Skip to content

Commit 9904631

Browse files
committed
Feat: added hardtime
1 parent 2377390 commit 9904631

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

init.lua

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -745,13 +745,13 @@ require('lazy').setup({
745745
-- change the command in the config to whatever the name of that colorscheme is.
746746
--
747747
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
748-
'folke/tokyonight.nvim',
748+
'loctvl842/monokai-pro.nvim',
749749
priority = 1000, -- Make sure to load this before all the other start plugins.
750750
init = function()
751751
-- Load the colorscheme here.
752752
-- Like many other themes, this one has different styles, and you could load
753753
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
754-
vim.cmd.colorscheme 'tokyonight-night'
754+
vim.cmd.colorscheme 'monokai-pro'
755755

756756
-- You can configure highlights by doing something like:
757757
vim.cmd.hi 'Comment gui=none'
@@ -839,15 +839,15 @@ require('lazy').setup({
839839
-- Uncomment any of the lines below to enable them (you will need to restart nvim).
840840
--
841841
-- require 'kickstart.plugins.debug',
842-
-- require 'kickstart.plugins.indent_line',
843-
-- require 'kickstart.plugins.lint',
842+
require 'kickstart.plugins.indent_line',
843+
require 'kickstart.plugins.lint',
844844

845845
-- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
846846
-- This is the easiest way to modularize your config.
847847
--
848848
-- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going.
849849
-- For additional information, see `:help lazy.nvim-lazy.nvim-structuring-your-plugins`
850-
-- { import = 'custom.plugins' },
850+
{ import = 'custom.plugins' },
851851
}, {
852852
ui = {
853853
-- If you are using a Nerd Font: set icons to an empty table which will use the

lua/custom/plugins/hardtime.lua

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
return {
2+
'm4xshen/hardtime.nvim',
3+
dependencies = { 'MunifTanjim/nui.nvim', 'nvim-lua/plenary.nvim' },
4+
opts = {},
5+
}

lua/custom/plugins/init.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
-- I promise not to create any merge conflicts in this directory :)
33
--
44
-- See the kickstart.nvim README for more information
5+
vim.wo.relativenumber = true
56
return {}

0 commit comments

Comments
 (0)