summaryrefslogtreecommitdiffstats
path: root/.config/nvim/after/plugin/nvim-tree.lua
blob: 445c01f75c9cdadd34c7df7cc9b696f3d169738c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require("nvim-tree").setup({
	sort = {
		sorter = "case_sensitive",
	},
	view = {
		width = 30,
	},
	renderer = {
		group_empty = true,
	},
	filters = {
		dotfiles = false,
	},
})