Fixed issues in nvim config
This commit is contained in:
parent
fc87ac1fec
commit
9d1cc2fb39
@ -119,9 +119,6 @@ cmp.setup {
|
|||||||
behavior = cmp.ConfirmBehavior.Replace,
|
behavior = cmp.ConfirmBehavior.Replace,
|
||||||
select = false,
|
select = false,
|
||||||
},
|
},
|
||||||
documentation = {
|
|
||||||
border = { "╭", "─", "╮", "│", "╯", "─", "╰", "│" },
|
|
||||||
},
|
|
||||||
experimental = {
|
experimental = {
|
||||||
ghost_text = false,
|
ghost_text = false,
|
||||||
native_menu = false,
|
native_menu = false,
|
||||||
|
@ -45,10 +45,6 @@ nvim_tree.setup {
|
|||||||
open_on_tab = false,
|
open_on_tab = false,
|
||||||
hijack_cursor = false,
|
hijack_cursor = false,
|
||||||
update_cwd = true,
|
update_cwd = true,
|
||||||
update_to_buf_dir = {
|
|
||||||
enable = true,
|
|
||||||
auto_open = true,
|
|
||||||
},
|
|
||||||
diagnostics = {
|
diagnostics = {
|
||||||
enable = true,
|
enable = true,
|
||||||
icons = {
|
icons = {
|
||||||
@ -73,7 +69,6 @@ nvim_tree.setup {
|
|||||||
height = 30,
|
height = 30,
|
||||||
hide_root_folder = false,
|
hide_root_folder = false,
|
||||||
side = "left",
|
side = "left",
|
||||||
auto_resize = true,
|
|
||||||
mappings = {
|
mappings = {
|
||||||
custom_only = false,
|
custom_only = false,
|
||||||
list = {
|
list = {
|
||||||
@ -85,15 +80,4 @@ nvim_tree.setup {
|
|||||||
number = false,
|
number = false,
|
||||||
relativenumber = false,
|
relativenumber = false,
|
||||||
},
|
},
|
||||||
quit_on_open = 0,
|
|
||||||
git_hl = 1,
|
|
||||||
disable_window_picker = 0,
|
|
||||||
root_folder_modifier = ":t",
|
|
||||||
show_icons = {
|
|
||||||
git = 1,
|
|
||||||
folders = 1,
|
|
||||||
files = 1,
|
|
||||||
folder_arrows = 1,
|
|
||||||
tree_width = 30,
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
local configs = require("nvim-treesitter.configs")
|
local configs = require("nvim-treesitter.configs")
|
||||||
configs.setup {
|
configs.setup {
|
||||||
ensure_installed = "maintained",
|
ensure_installed = {"c", "cpp"},
|
||||||
sync_install = false,
|
sync_install = false,
|
||||||
ignore_install = { "" }, -- List of parsers to ignore installing
|
ignore_install = { "" }, -- List of parsers to ignore installing
|
||||||
highlight = {
|
highlight = {
|
||||||
|
Loading…
Reference in New Issue
Block a user