configure catppuccin theme
This commit is contained in:
parent
71503c529d
commit
c033a705ce
3 changed files with 21 additions and 9 deletions
19
init.lua
19
init.lua
|
|
@ -192,13 +192,10 @@ require('lazy').setup({
|
|||
build = ':TSUpdate',
|
||||
},
|
||||
|
||||
-- NOTE: Next Step on Your Neovim Journey: Add/Configure additional "plugins" for kickstart
|
||||
-- These are some example plugins that I've included in the kickstart repository.
|
||||
-- Uncomment any of the lines below to enable them.
|
||||
-- require 'kickstart.plugins.autoformat',
|
||||
-- require 'kickstart.plugins.debug',
|
||||
|
||||
-- { import = 'custom.plugins' },
|
||||
{ import = 'custom.plugins' },
|
||||
}, {})
|
||||
|
||||
-- [[ Setting options ]]
|
||||
|
|
@ -555,5 +552,19 @@ cmp.setup {
|
|||
{ name = 'path' },
|
||||
},
|
||||
}
|
||||
-- Configure Theme
|
||||
require('catppuccin').setup({
|
||||
flavour = 'macchiato',
|
||||
no_italic = false,
|
||||
styles = {
|
||||
comments = { 'italic' },
|
||||
conditionals = { 'italic' },
|
||||
},
|
||||
integrations = {
|
||||
treesitter = true,
|
||||
},
|
||||
})
|
||||
|
||||
vim.cmd.colorscheme 'catppuccin'
|
||||
|
||||
-- vim: ts=2 sts=2 sw=2 et
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue