From 20b565a10bdd0d16607564262358f2fb08369a84 Mon Sep 17 00:00:00 2001 From: zymon Date: Mon, 26 Aug 2024 19:24:33 +0200 Subject: [PATCH] colorschemas --- init.lua | 2 ++ lua/znvim/plugins/colorscheme.lua | 23 +++++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 lua/znvim/plugins/colorscheme.lua 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, + }, + }, +}