add ts context to nvim

This commit is contained in:
Alexander Navarro 2023-10-25 20:03:17 -03:00
parent 7992dc01f6
commit 550061ede5
3 changed files with 3 additions and 1 deletions

View file

@ -70,7 +70,7 @@ opt.number = true -- Print line number
opt.pumblend = 10 -- Popup blend
opt.pumheight = 10 -- Maximum number of entries in a popup
opt.relativenumber = true -- Relative line numbers
opt.scrolloff = 4 -- Lines of context
opt.scrolloff = 8 -- Lines of context
opt.sessionoptions = { "buffers", "curdir", "tabpages", "winsize" }
opt.shiftround = true -- Round indent
opt.shiftwidth = 2 -- Size of an indent

View file

@ -44,4 +44,5 @@ return {
require("illuminate").configure(opts)
end,
},
{ "nvim-treesitter/nvim-treesitter-context" },
}