nvchad/lua/options.lua

47 lines
902 B
Lua
Raw Normal View History

2024-03-09 11:03:44 -05:00
require "nvchad.options"
-- add yours here!
2024-03-17 21:04:01 -04:00
-- local o = vim.o
-- o.cursorlineopt ='both' -- to enable cursorline!
2024-10-29 19:27:51 -04:00
require('telescope').setup{
defaults = {
layout_config = {
prompt_position = "top"
}
}
}
2024-11-04 09:19:39 -05:00
require('nvim-tree').setup{
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 = "" },
},
},
},
}