mirror of
https://github.com/josean-dev/dev-environment-files.git
synced 2025-01-08 17:21:23 +01:00
Updated nvim-tree config, devicons repo and replace with register repo
This commit is contained in:
parent
de7061dd53
commit
3347137010
2 changed files with 6 additions and 6 deletions
|
@ -41,7 +41,7 @@ return packer.startup(function(use)
|
||||||
|
|
||||||
-- essential plugins
|
-- essential plugins
|
||||||
use("tpope/vim-surround") -- add, delete, change surroundings (it's awesome)
|
use("tpope/vim-surround") -- add, delete, change surroundings (it's awesome)
|
||||||
use("vim-scripts/ReplaceWithRegister") -- replace with register contents using motion (gr + motion)
|
use("inkarkat/vim-ReplaceWithRegister") -- replace with register contents using motion (gr + motion)
|
||||||
|
|
||||||
-- commenting with gc
|
-- commenting with gc
|
||||||
use("numToStr/Comment.nvim")
|
use("numToStr/Comment.nvim")
|
||||||
|
@ -50,7 +50,7 @@ return packer.startup(function(use)
|
||||||
use("nvim-tree/nvim-tree.lua")
|
use("nvim-tree/nvim-tree.lua")
|
||||||
|
|
||||||
-- vs-code like icons
|
-- vs-code like icons
|
||||||
use("kyazdani42/nvim-web-devicons")
|
use("nvim-tree/nvim-web-devicons")
|
||||||
|
|
||||||
-- statusline
|
-- statusline
|
||||||
use("nvim-lualine/lualine.nvim")
|
use("nvim-lualine/lualine.nvim")
|
||||||
|
|
|
@ -5,7 +5,7 @@ if not setup then
|
||||||
end
|
end
|
||||||
|
|
||||||
-- recommended settings from nvim-tree documentation
|
-- recommended settings from nvim-tree documentation
|
||||||
vim.g.loaded = 1
|
vim.g.loaded_netrw = 1
|
||||||
vim.g.loaded_netrwPlugin = 1
|
vim.g.loaded_netrwPlugin = 1
|
||||||
|
|
||||||
-- change color for arrows in tree to light blue
|
-- change color for arrows in tree to light blue
|
||||||
|
@ -34,7 +34,7 @@ nvimtree.setup({
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
-- git = {
|
-- git = {
|
||||||
-- ignore = false,
|
-- ignore = false,
|
||||||
-- },
|
-- },
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue