feat(nvim): more fennel
This commit is contained in:
parent
60fa4c7121
commit
af29f68f6b
8
config/nvim/fnl/config.fnl
Normal file
8
config/nvim/fnl/config.fnl
Normal 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")
|
||||||
|
|
@ -36,6 +36,9 @@ vim.loader.enable()
|
|||||||
|
|
||||||
require("hotpot") -- Optionally you may call require("hotpot").setup(...) here
|
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.
|
-- 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.
|
-- If you want to use Lazy's "structured" style, see the next code sample.
|
||||||
require("lazy").setup({
|
require("lazy").setup({
|
||||||
@ -46,3 +49,5 @@ require("lazy").setup({
|
|||||||
{ import = "plugins" },
|
{ import = "plugins" },
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user