chore: put color option in theme file

This commit is contained in:
Yorick Barbanneau 2024-04-06 01:05:05 +02:00
parent 8a8c63ac4b
commit 8710f5fa25
2 changed files with 1 additions and 1 deletions

View file

@ -35,7 +35,6 @@ vim.opt.showmatch = true
vim.opt.smartcase = true -- search: try :to be smart about cases vim.opt.smartcase = true -- search: try :to be smart about cases
vim.opt.smartindent = true vim.opt.smartindent = true
vim.opt.tabstop = 4 vim.opt.tabstop = 4
vim.opt.termguicolors = true -- 24 bits color support
vim.opt.wildmenu = true -- activate enhanced user menu vim.opt.wildmenu = true -- activate enhanced user menu
vim.opt.wildmode = 'lastused:full,list' -- enhance menu vim.opt.wildmode = 'lastused:full,list' -- enhance menu
vim.opt.pumheight = 10 vim.opt.pumheight = 10

View file

@ -3,4 +3,5 @@ require("catppuccin").setup {
neotree = true neotree = true
} }
} }
vim.opt.termguicolors = true -- 24 bits color support
vim.cmd.colorscheme "catppuccin" vim.cmd.colorscheme "catppuccin"