index change and tree changes
This commit is contained in:
parent
97c865358f
commit
d0acc29331
@ -98,6 +98,8 @@ return require('packer').startup(function(use)
|
|||||||
after = "coq_nvim",
|
after = "coq_nvim",
|
||||||
config = function() require("plugins.nvim-autopairs") end
|
config = function() require("plugins.nvim-autopairs") end
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-- debugging
|
||||||
use {
|
use {
|
||||||
"rcarriga/nvim-dap-ui",
|
"rcarriga/nvim-dap-ui",
|
||||||
requires = {"mfussenegger/nvim-dap"},
|
requires = {"mfussenegger/nvim-dap"},
|
||||||
|
@ -13,8 +13,8 @@ require'nvim-tree'.setup {
|
|||||||
-- opens the tree when changing/opening a new tab if the tree wasn't previously opened
|
-- opens the tree when changing/opening a new tab if the tree wasn't previously opened
|
||||||
open_on_tab = false,
|
open_on_tab = false,
|
||||||
-- hijack the cursor in the tree to put it at the start of the filename
|
-- hijack the cursor in the tree to put it at the start of the filename
|
||||||
hijack_cursor = false,
|
hijack_cursor = true,
|
||||||
-- updates the root directory of the tree on `DirChanged` (when your run `:cd` usually)
|
-- updates the root directory of the tree on `DirChanged` (when your run `:cd` usually)
|
||||||
update_cwd = false,
|
update_cwd = false,
|
||||||
-- show lsp diagnostics in the signcolumn
|
-- show lsp diagnostics in the signcolumn
|
||||||
lsp_diagnostics = false,
|
lsp_diagnostics = false,
|
||||||
@ -39,7 +39,7 @@ require'nvim-tree'.setup {
|
|||||||
|
|
||||||
view = {
|
view = {
|
||||||
-- width of the window, can be either a number (columns) or a string in `%`
|
-- width of the window, can be either a number (columns) or a string in `%`
|
||||||
width = 30,
|
width = 28,
|
||||||
-- side of the tree, can be one of 'left' | 'right' | 'top' | 'bottom'
|
-- side of the tree, can be one of 'left' | 'right' | 'top' | 'bottom'
|
||||||
side = 'left',
|
side = 'left',
|
||||||
-- if true the tree will resize itself after opening a file
|
-- if true the tree will resize itself after opening a file
|
||||||
|
Loading…
Reference in New Issue
Block a user