This repository has been archived on 2024-03-04. You can view files and clone it, but cannot push or open issues or pull requests.
linux/.config/nvim/lua/plugin/Filetree.lua

22 lines
402 B
Lua
Raw Normal View History

2024-02-06 15:25:18 +03:00
-- Disable netrw at the very start of your init.lua.
2023-08-08 16:24:15 +03:00
vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
2024-02-06 15:25:18 +03:00
-- Set termguicolors to enable highlight groups.
2023-08-08 16:24:15 +03:00
vim.opt.termguicolors = true
2024-02-06 15:25:18 +03:00
-- Setup nvim-tree.
2023-08-08 16:24:15 +03:00
require("nvim-tree").setup({
2023-12-05 22:06:39 +03:00
sort_by = "case_sensitive",
view = {
width = 30,
},
renderer = {
group_empty = true,
},
filters = {
2024-02-06 15:25:18 +03:00
dotfiles = false,
2023-12-05 22:06:39 +03:00
git_ignored = false
},
2023-08-08 16:24:15 +03:00
})