diff --git a/init.lua b/init.lua index 9b2d42f..e0497b8 100644 --- a/init.lua +++ b/init.lua @@ -15,3 +15,5 @@ require("znvim.options") require("lazy").setup("znvim.plugins") require("znvim.keymaps") require("znvim.autocmds") + +vim.cmd[[colorscheme kanagawa]] diff --git a/lua/znvim/plugins/colorscheme.lua b/lua/znvim/plugins/colorscheme.lua new file mode 100644 index 0000000..8c092bf --- /dev/null +++ b/lua/znvim/plugins/colorscheme.lua @@ -0,0 +1,23 @@ +return { + + { + "https://github.com/folke/tokyonight.nvim", + lazy = true, + }, + + { + "https://github.com/exitface/synthwave.vim", + lazy = true, + }, + + { + "https://github.com/rebelot/kanagawa.nvim", + lazy = true, + opts = { + keywordStyle = { italic = false }, + globalStatus = true, + transparent = true, + dimInactive = true, + }, + }, +}