mirror of
https://github.com/tiyn/dotfiles.git
synced 2025-10-13 04:51:15 +02:00
nvim: swapped file explorer added indent-lines and fzf
This commit is contained in:
6
.config/nvim/plugin/indent-blankline.lua
Normal file
6
.config/nvim/plugin/indent-blankline.lua
Normal file
@@ -0,0 +1,6 @@
|
||||
-- lukas-reineke/indent-blankline.nvim
|
||||
|
||||
require("indent_blankline").setup {
|
||||
show_current_context = true,
|
||||
show_current_context_start = true,
|
||||
}
|
14
.config/nvim/plugin/nvim-tree.lua
Normal file
14
.config/nvim/plugin/nvim-tree.lua
Normal file
@@ -0,0 +1,14 @@
|
||||
-- nvim-tree/nvim-tree.lua
|
||||
|
||||
require("nvim-tree").setup({
|
||||
sort_by = "case_sensitive",
|
||||
view = {
|
||||
width = 30,
|
||||
},
|
||||
renderer = {
|
||||
group_empty = true,
|
||||
},
|
||||
filters = {
|
||||
dotfiles = true,
|
||||
},
|
||||
})
|
17
.config/nvim/plugin/telescope.lua
Normal file
17
.config/nvim/plugin/telescope.lua
Normal file
@@ -0,0 +1,17 @@
|
||||
require("telescope").setup {
|
||||
extensions = {
|
||||
file_browser = {
|
||||
theme = "ivy",
|
||||
-- disables netrw and use telescope-file-browser in its place
|
||||
hijack_netrw = true,
|
||||
mappings = {
|
||||
["i"] = {
|
||||
-- your custom insert mode mappings
|
||||
},
|
||||
["n"] = {
|
||||
-- your custom normal mode mappings
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
Reference in New Issue
Block a user