@@ -8,6 +8,7 @@ vim.g.have_nerd_font = true
8
8
-- [[ Setting options ]]
9
9
vim .opt .wrap = false
10
10
vim .opt .textwidth = 80
11
+ vim .opt .cc = " 81"
11
12
vim .opt .numberwidth = 4 -- (up to 9999)
12
13
vim .opt .scrolloff = 4 -- Minimum number of lines to keep above and below the cursor
13
14
vim .opt .tabstop = 2 -- Number of columns occupied by a tab
@@ -115,6 +116,7 @@ require('lazy').setup({
115
116
' lewis6991/gitsigns.nvim' ,
116
117
117
118
{ " folke/tokyonight.nvim" , lazy = false , priority = 1000 , opts = {} },
119
+ { " catppuccin/nvim" , name = " catppuccin" , lazy = false , priority = 1000 , opts = {} },
118
120
119
121
{
120
122
" echasnovski/mini.align" ,
@@ -330,6 +332,7 @@ require('lazy').setup({
330
332
331
333
-- Allows extra capabilities provided by nvim-cmp
332
334
' hrsh7th/cmp-nvim-lsp' ,
335
+ ' hrsh7th/cmp-buffer' ,
333
336
},
334
337
config = function ()
335
338
-- This function gets run when an LSP attaches to a particular buffer.
@@ -505,6 +508,7 @@ require('lazy').setup({
505
508
},
506
509
{ name = ' nvim_lsp' },
507
510
{ name = ' path' },
511
+ { name = ' buffer' },
508
512
},
509
513
}
510
514
end ,
@@ -574,7 +578,7 @@ require('lazy').setup({
574
578
},
575
579
},
576
580
577
- install = { colorscheme = { " tokyonight " } }
581
+ install = { colorscheme = { " catppuccin-mocha " } }
578
582
},
579
583
580
584
{
@@ -599,6 +603,6 @@ require('lazy').setup({
599
603
},
600
604
})
601
605
602
- vim .cmd .colorscheme " tokyonight "
606
+ vim .cmd .colorscheme " catppuccin-mocha "
603
607
604
608
-- vim: ts=2 sts=2 sw=2 et
0 commit comments