Adds neotree file explorer

This commit is contained in:
Marcelo Canaparro 2024-01-06 11:49:50 +00:00
parent 049870330e
commit 84bd738041
12 changed files with 451 additions and 440 deletions

View file

@ -46,3 +46,9 @@ vim.o.completeopt = 'menuone,noselect'
-- NOTE: You should make sure your terminal supports this
vim.o.termguicolors = true
-- Number of spaces that a <Tab> in the file counts for
vim.opt.tabstop = 4
-- Number of spaces to use for each step of (auto)indent
vim.opt.shiftwidth = 4
-- Use spaces instead of tabs
vim.opt.expandtab = true