add custom plugins
This commit is contained in:
parent
c80a77488b
commit
693e7c3053
10 changed files with 175 additions and 1 deletions
13
lua/custom/plugins/colors.lua
Normal file
13
lua/custom/plugins/colors.lua
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
return {
|
||||
'folke/tokyonight.nvim',
|
||||
lazy = false,
|
||||
priority = 999,
|
||||
config = function()
|
||||
require('tokyonight').setup {
|
||||
style = 'storm',
|
||||
transparent = true,
|
||||
}
|
||||
|
||||
vim.cmd.colorscheme 'tokyonight'
|
||||
end,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue