Added initial nvim config
This commit is contained in:
parent
406d73f803
commit
d31faf2dbf
14 changed files with 577 additions and 0 deletions
9
.config/nvim/plugin/telescope.lua
Normal file
9
.config/nvim/plugin/telescope.lua
Normal file
|
@ -0,0 +1,9 @@
|
|||
local status, telescope = pcall(require, "telescope")
|
||||
if (not status) then
|
||||
print("telescope is not installed")
|
||||
return
|
||||
end
|
||||
|
||||
telescope.setup({})
|
||||
|
||||
telescope.load_extension "file_browser"
|
Loading…
Add table
Add a link
Reference in a new issue