colorschemas
This commit is contained in:
parent
da501511bc
commit
20b565a10b
2 changed files with 25 additions and 0 deletions
2
init.lua
2
init.lua
|
@ -15,3 +15,5 @@ require("znvim.options")
|
|||
require("lazy").setup("znvim.plugins")
|
||||
require("znvim.keymaps")
|
||||
require("znvim.autocmds")
|
||||
|
||||
vim.cmd[[colorscheme kanagawa]]
|
||||
|
|
23
lua/znvim/plugins/colorscheme.lua
Normal file
23
lua/znvim/plugins/colorscheme.lua
Normal file
|
@ -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,
|
||||
},
|
||||
},
|
||||
}
|
Loading…
Reference in a new issue