Refactor neovim config file structure
All plugins are now in their own files with their lazy specifications and configurations. Also moved lazy initialization to init.lua because it is very compact now
This commit is contained in:
parent
902c397e8b
commit
0ced314c90
36 changed files with 554 additions and 584 deletions
16
home/.config/nvim/lua/plugins/firenvim.lua
Normal file
16
home/.config/nvim/lua/plugins/firenvim.lua
Normal file
|
@ -0,0 +1,16 @@
|
|||
-- Neovim inside Firefox
|
||||
return {
|
||||
"glacambre/firenvim",
|
||||
build = function()
|
||||
vim.fn["firenvim#install"](0)
|
||||
end,
|
||||
config = function()
|
||||
vim.g.firenvim_config = {
|
||||
localSettings = {
|
||||
[".*"] = {
|
||||
takeOver = "never",
|
||||
},
|
||||
},
|
||||
}
|
||||
end,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue