removed barbar
This commit is contained in:
parent
b0965ec1a3
commit
ca61ef3b32
5 changed files with 11 additions and 16 deletions
|
@ -1,13 +0,0 @@
|
|||
return { 'romgrk/barbar.nvim',
|
||||
dependencies = {
|
||||
'lewis6991/gitsigns.nvim', -- OPTIONAL: for git status
|
||||
'nvim-tree/nvim-web-devicons', -- OPTIONAL: for file icons
|
||||
},
|
||||
init = function() vim.g.barbar_auto_setup = false end,
|
||||
opts = {
|
||||
-- lazy.nvim will automatically call setup for you. put your options here, anything missing will use the default:
|
||||
-- animation = true,
|
||||
-- insert_at_start = true,
|
||||
-- …etc.
|
||||
},
|
||||
}
|
|
@ -1,11 +1,9 @@
|
|||
-- TODO: set keymaps
|
||||
|
||||
return {
|
||||
"nvim-neo-tree/neo-tree.nvim",
|
||||
branch = "v3.x",
|
||||
dependencies = {
|
||||
"nvim-lua/plenary.nvim",
|
||||
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
"MunifTanjim/nui.nvim",
|
||||
-- "3rd/image.nvim", -- Optional image support in preview window: See `# Preview Mode` for more information
|
||||
},
|
||||
|
|
|
@ -24,6 +24,9 @@ vim.opt.undodir = os.getenv("HOME") .. "/.local/state/nvim/undodir"
|
|||
vim.opt.undofile = true
|
||||
vim.opt.updatetime = 50
|
||||
|
||||
-- close unused buffers
|
||||
vim.opt.hidden = false
|
||||
|
||||
-- end search when exiting
|
||||
vim.opt.hlsearch = false
|
||||
vim.opt.incsearch = true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue