Replace neotree with nvim-tree

This commit is contained in:
juanmagalhaes 2023-08-16 02:03:53 -03:00
parent 39dfc1554a
commit 767ad054bd
8 changed files with 66 additions and 26 deletions

View file

@ -4,6 +4,14 @@
vim.g.mapleader = ' '
vim.g.maplocalleader = ' '
-- As in nvim-tree docs
-- disable netrw at the very start of your init.lua
vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
-- set termguicolors to enable highlight groups
vim.opt.termguicolors = true
-- Disale Swap Files
vim.opt.swapfile = false