Added initial nvim config

This commit is contained in:
pfych 2024-08-16 21:55:29 +10:00
parent 406d73f803
commit d31faf2dbf
14 changed files with 577 additions and 0 deletions

View 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"