From bdee3f372ff7d2ab0ef0a304027e3f8c377ed314 Mon Sep 17 00:00:00 2001 From: FilipMyhren Date: Sun, 28 May 2023 21:19:01 +0200 Subject: [PATCH] Added new themes --- init.lua | 1 + lua/custom/plugins/init.lua | 4 +++- lua/custom/plugins/themes.lua | 3 +++ 3 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 lua/custom/plugins/themes.lua 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" +}