feat(nvim): more fennel

This commit is contained in:
Fernando Araoz 2025-01-21 17:27:56 -05:00
parent 60fa4c7121
commit af29f68f6b
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,8 @@
(set vim.g.mapleader " ")
(set vim.g.maplocalleader " ")
(set vim.g.have_nerd_font true)
(set vim.opt.number true)
(set vim.opt.relativenumber true)
(print "I have been setup :D")

View File

@ -36,6 +36,9 @@ vim.loader.enable()
require("hotpot") -- Optionally you may call require("hotpot").setup(...) here
-- config defined in fnl
require("config")
-- You must include Hotpot in your plugin list for it to function correctly.
-- If you want to use Lazy's "structured" style, see the next code sample.
require("lazy").setup({
@ -46,3 +49,5 @@ require("lazy").setup({
{ import = "plugins" },
},
})