update: nvim: colorscheme catppucin
- transparent
This commit is contained in:
parent
ef5577e7fe
commit
4b5d01a646
1 changed files with 11 additions and 1 deletions
|
@ -15,6 +15,7 @@ vim.opt.rtp:prepend(lazypath)
|
||||||
|
|
||||||
-- Installing plugins
|
-- Installing plugins
|
||||||
require('lazy').setup({
|
require('lazy').setup({
|
||||||
|
{ "catppuccin/nvim", name = "catppuccin" },
|
||||||
-- fzf
|
-- fzf
|
||||||
{ 'ibhagwan/fzf-lua',
|
{ 'ibhagwan/fzf-lua',
|
||||||
-- optional icon
|
-- optional icon
|
||||||
|
@ -59,8 +60,17 @@ highlight cursorcolumn ctermbg=235
|
||||||
]])
|
]])
|
||||||
vim.o.mouse = 'a'
|
vim.o.mouse = 'a'
|
||||||
vim.o.signcolumn = 'yes'
|
vim.o.signcolumn = 'yes'
|
||||||
vim.o.ignorecase = true
|
vim.o.ignorecase = true -- keep signcolumn on
|
||||||
vim.o.smartcase = true
|
vim.o.smartcase = true
|
||||||
|
vim.opt.undofile = true -- Save undo history
|
||||||
|
vim.o.completeopt = 'menuone,noselect' -- for better completion experience
|
||||||
|
vim.o.termguicolors = true
|
||||||
|
|
||||||
|
-- color scheme
|
||||||
|
require('catppuccin').setup({
|
||||||
|
transparent_background = true,
|
||||||
|
})
|
||||||
|
vim.cmd.colorscheme "catppuccin"
|
||||||
|
|
||||||
-----------------------------------------------------------
|
-----------------------------------------------------------
|
||||||
-- to use PowerShell on Windows
|
-- to use PowerShell on Windows
|
||||||
|
|
Loading…
Reference in a new issue