NVIM tree configurations.

This commit is contained in:
Anurag Singh 2024-02-03 06:30:00 -08:00
parent bc4ad1218b
commit 8a0439114d
3 changed files with 87 additions and 2 deletions

View file

@ -2,4 +2,31 @@
-- I promise not to create any merge conflicts in this directory :)
--
-- See the kickstart.nvim README for more information
return {}
-- disable netrw at the very start of your init.lua
vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
-- optionally enable 24-bit colour
vim.opt.termguicolors = true
-- empty setup using defaults
require("nvim-tree").setup()
-- OR setup with some options
--require("nvim-tree").setup({
-- sort = {
-- sorter = "case_sensitive",
-- },
-- view = {
-- width = 30,
-- },
-- renderer = {
-- group_empty = true,
-- },
-- filters = {
-- dotfiles = true,
-- },
--})
--return {}