Moved configs to seperate files
This commit is contained in:
parent
fdb565ce87
commit
3b96ad1b57
26 changed files with 578 additions and 229 deletions
21
lua/angryluck/plugins/colorscheme.lua
Normal file
21
lua/angryluck/plugins/colorscheme.lua
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
return {
|
||||
{
|
||||
-- Best colorscheme
|
||||
"catppuccin/nvim",
|
||||
lazy = false,
|
||||
name = "catppuccin",
|
||||
priority = 1000,
|
||||
config = function()
|
||||
vim.cmd.colorscheme "catppuccin"
|
||||
end,
|
||||
},
|
||||
|
||||
{
|
||||
-- Theme inspired by Atom
|
||||
"navarasu/onedark.nvim",
|
||||
priority = 1000,
|
||||
-- config = function()
|
||||
-- vim.cmd.colorscheme 'onedark'
|
||||
-- end,
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue