chore: Massive restructure. FIXED TAB BUG . Packer -> Lazy . barbar -> bufferline .
This commit is contained in:
parent
b2267a0e47
commit
5e1cd7267d
15 changed files with 275 additions and 500 deletions
23
.config/nvim/lua/plugins/catppuccin.lua
Normal file
23
.config/nvim/lua/plugins/catppuccin.lua
Normal file
|
@ -0,0 +1,23 @@
|
|||
|
||||
--local colorscheme = "onedark"
|
||||
|
||||
require("catppuccin").setup({
|
||||
flavour = "frappe", -- latte, frappe, macchiato, mocha
|
||||
styles = {
|
||||
comments = { "italic" },
|
||||
conditionals = { "italic" },
|
||||
},
|
||||
integrations = {
|
||||
cmp = true,
|
||||
nvimtree = true,
|
||||
telescope = true,
|
||||
},
|
||||
})
|
||||
|
||||
|
||||
local colorscheme = "catppuccin"
|
||||
|
||||
local status_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)
|
||||
if not status_ok then
|
||||
return
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue