diff --git a/init.lua b/init.lua index b76ecf5b..2f04a274 100644 --- a/init.lua +++ b/init.lua @@ -272,6 +272,7 @@ vim.keymap.set('n', '5', function() require('harpoon.ui').nav_file(5) en vim.keymap.set('n', '6', function() require('harpoon.ui').nav_file(6) end, { desc = "Navigate to file at posistion 6" }) vim.keymap.set('n', '7', function() require('harpoon.ui').nav_file(7) end, { desc = "Navigate to file at posistion 7" }) vim.keymap.set('n', '8', function() require('harpoon.ui').nav_file(8) end, { desc = "Navigate to file at posistion 8" }) +vim.keymap.set('n', '9', function() require('harpoon.ui').nav_file(9) end, { desc = "Navigate to file at posistion 9" }) -- [[ Highlight on yank ]] -- See `:help vim.highlight.on_yank()` diff --git a/lua/custom/plugins/init.lua b/lua/custom/plugins/init.lua index be0eb9d8..3136b70d 100644 --- a/lua/custom/plugins/init.lua +++ b/lua/custom/plugins/init.lua @@ -2,4 +2,6 @@ -- I promise not to create any merge conflicts in this directory :) -- -- See the kickstart.nvim README for more information -return {} +return { +} + diff --git a/lua/custom/plugins/themes.lua b/lua/custom/plugins/themes.lua new file mode 100644 index 00000000..ec60b666 --- /dev/null +++ b/lua/custom/plugins/themes.lua @@ -0,0 +1,3 @@ +return { + "morhetz/gruvbox" +}