57 lines
1.1 KiB
Lua
57 lines
1.1 KiB
Lua
require "nvchad.options"
|
|
|
|
-- add yours here!
|
|
|
|
-- local o = vim.o
|
|
-- o.cursorlineopt ='both' -- to enable cursorline!
|
|
require('telescope').setup{
|
|
defaults = {
|
|
layout_config = {
|
|
prompt_position = "top"
|
|
}
|
|
}
|
|
}
|
|
|
|
require('nvim-tree').setup{
|
|
filters = {
|
|
enable = true,
|
|
git_ignored = false,
|
|
dotfiles = false,
|
|
git_clean = false,
|
|
no_buffer = false,
|
|
no_bookmark = false,
|
|
custom = {},
|
|
exclude = {},
|
|
},
|
|
-- filters = { dotfiles = false },
|
|
disable_netrw = true,
|
|
hijack_cursor = true,
|
|
sync_root_with_cwd = true,
|
|
update_focused_file = {
|
|
enable = true,
|
|
update_root = false,
|
|
},
|
|
view = {
|
|
width = 30,
|
|
preserve_window_proportions = true,
|
|
},
|
|
renderer = {
|
|
root_folder_label = false,
|
|
highlight_git = true,
|
|
indent_markers = { enable = true },
|
|
icons = {
|
|
glyphs = {
|
|
default = "",
|
|
folder = {
|
|
default = "",
|
|
empty = "",
|
|
empty_open = "",
|
|
open = "",
|
|
symlink = "",
|
|
},
|
|
git = { unmerged = "" },
|
|
},
|
|
},
|
|
},
|
|
}
|