update
This commit is contained in:
parent
539b58d3fb
commit
13845e2d87
3
init.lua
3
init.lua
|
@ -1,5 +1,4 @@
|
||||||
--[[
|
--[[
|
||||||
|
|
||||||
=====================================================================
|
=====================================================================
|
||||||
==================== READ THIS BEFORE CONTINUING ==================== =====================================================================
|
==================== READ THIS BEFORE CONTINUING ==================== =====================================================================
|
||||||
|
|
||||||
|
@ -65,7 +64,7 @@ vim.opt.rtp:prepend(lazypath)
|
||||||
-- You can also configure plugins after the setup call,
|
-- You can also configure plugins after the setup call,
|
||||||
-- as they will be available in your neovim runtime.
|
-- as they will be available in your neovim runtime.
|
||||||
require('lazy').setup({
|
require('lazy').setup({
|
||||||
-- NOTE: First, some plugins that don't require any configuration
|
-- NOTE: First, some plugins that don't require any configurationinit
|
||||||
|
|
||||||
{ -- Set lualine as statusline
|
{ -- Set lualine as statusline
|
||||||
'nvim-lualine/lualine.nvim',
|
'nvim-lualine/lualine.nvim',
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
return {
|
||||||
|
'glacambre/firenvim',
|
||||||
|
-- Lazy load firenvim
|
||||||
|
-- Explanation: https://github.com/folke/lazy.nvim/discussions/463#discussioncomment-4819297
|
||||||
|
cond = not not vim.g.started_by_firenvim,
|
||||||
|
build = function()
|
||||||
|
require("lazy").load({ plugins = "firenvim", wait = true })
|
||||||
|
vim.fn["firenvim#install"](0)
|
||||||
|
end
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
return {
|
||||||
|
"tpope/vim-repeat"
|
||||||
|
}
|
|
@ -8,11 +8,6 @@ return {
|
||||||
require('leap').init_highlight(true)
|
require('leap').init_highlight(true)
|
||||||
end)
|
end)
|
||||||
|
|
||||||
require('leap').opts = {
|
lua = require('leap').opts
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue