Catppuccin added and harpoon edited
This commit is contained in:
parent
213404514a
commit
838773e5e4
3 changed files with 31 additions and 5 deletions
23
lua/custom/plugins/catppuccin.lua
Normal file
23
lua/custom/plugins/catppuccin.lua
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
'catppuccin/nvim',
|
||||
name = 'catppuccin',
|
||||
priority = 1000,
|
||||
init = function()
|
||||
-- Load the colorscheme here.
|
||||
-- Like many other themes, this one has different styles, and you could load
|
||||
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
|
||||
vim.cmd.colorscheme 'catppuccin'
|
||||
|
||||
-- You can configure highlights by doing something like:
|
||||
vim.cmd.hi 'Comment gui=none'
|
||||
end,
|
||||
opts = {
|
||||
term_colors = true,
|
||||
--[[ color_overrides = {
|
||||
mocha = {
|
||||
base = '#000000',
|
||||
mantle = '#000000',
|
||||
crust = '#000000',
|
||||
},
|
||||
}, ]]
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue