Skip to content

Commit 1da93c5

Browse files
committed
add firenvim
1 parent 6230032 commit 1da93c5

File tree

1 file changed

+12
-20
lines changed

1 file changed

+12
-20
lines changed

init.lua

Lines changed: 12 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ require('lazy').setup({
7676
-- Detect tabstop and shiftwidth automatically
7777
'tpope/vim-sleuth',
7878

79+
7980
-- NOTE: This is where your plugins related to LSP can be installed.
8081
-- The configuration is done below. Search for lspconfig to find it below.
8182
{
@@ -94,6 +95,17 @@ require('lazy').setup({
9495
'folke/neodev.nvim',
9596
},
9697
},
98+
{
99+
'glacambre/firenvim',
100+
101+
-- Lazy load firenvim
102+
-- Explanation: https://github.com/folke/lazy.nvim/discussions/463#discussioncomment-4819297
103+
lazy = not vim.g.started_by_firenvim,
104+
build = function()
105+
vim.fn["firenvim#install"](0)
106+
end
107+
},
108+
97109

98110
{
99111
-- Autocompletion
@@ -606,23 +618,3 @@ cmp.setup {
606618

607619
-- The line beneath this is called `modeline`. See `:help modeline`
608620
-- vim: ts=2 sts=2 sw=2 et
609-
610-
{
611-
'glacambre/firenvim',
612-
613-
-- Lazy load firenvim
614-
-- Explanation: https://github.com/folke/lazy.nvim/discussions/463#discussioncomment-4819297
615-
lazy = not vim.g.started_by_firenvim,
616-
build = function()
617-
vim.fn["firenvim#install"](0)
618-
end
619-
}{
620-
'glacambre/firenvim',
621-
622-
-- Lazy load firenvim
623-
-- Explanation: https://github.com/folke/lazy.nvim/discussions/463#discussioncomment-4819297
624-
lazy = not vim.g.started_by_firenvim,
625-
build = function()
626-
vim.fn["firenvim#install"](0)
627-
end
628-
}

0 commit comments

Comments
 (0)