Some more improvements to the Neovim config
This commit is contained in:
parent
18a49d5d67
commit
335d45d9cb
11 changed files with 68 additions and 66 deletions
|
@ -109,12 +109,6 @@ _G.packer_plugins = {
|
|||
path = "/home/quadradical/.local/share/nvim/site/pack/packer/start/indent-blankline.nvim",
|
||||
url = "https://github.com/lukas-reineke/indent-blankline.nvim"
|
||||
},
|
||||
["lspsaga.nvim"] = {
|
||||
config = { 'require "config.lspsaga"' },
|
||||
loaded = true,
|
||||
path = "/home/quadradical/.local/share/nvim/site/pack/packer/start/lspsaga.nvim",
|
||||
url = "https://github.com/glepnir/lspsaga.nvim"
|
||||
},
|
||||
["lualine.nvim"] = {
|
||||
config = { 'require "config.lualine"' },
|
||||
loaded = true,
|
||||
|
@ -122,6 +116,7 @@ _G.packer_plugins = {
|
|||
url = "https://github.com/nvim-lualine/lualine.nvim"
|
||||
},
|
||||
["novim-mode"] = {
|
||||
config = { 'require "config.novim"' },
|
||||
loaded = true,
|
||||
path = "/home/quadradical/.local/share/nvim/site/pack/packer/start/novim-mode",
|
||||
url = "https://github.com/tombh/novim-mode"
|
||||
|
@ -187,46 +182,46 @@ _G.packer_plugins = {
|
|||
}
|
||||
|
||||
time([[Defining packer_plugins]], false)
|
||||
-- Config for: indent-blankline.nvim
|
||||
time([[Config for indent-blankline.nvim]], true)
|
||||
require "config.indent-blankline"
|
||||
time([[Config for indent-blankline.nvim]], false)
|
||||
-- Config for: Comment.nvim
|
||||
time([[Config for Comment.nvim]], true)
|
||||
require "config.comment"
|
||||
time([[Config for Comment.nvim]], false)
|
||||
-- Config for: nvim-treesitter
|
||||
time([[Config for nvim-treesitter]], true)
|
||||
require "config.treesitter"
|
||||
time([[Config for nvim-treesitter]], false)
|
||||
-- Config for: lspsaga.nvim
|
||||
time([[Config for lspsaga.nvim]], true)
|
||||
require "config.lspsaga"
|
||||
time([[Config for lspsaga.nvim]], false)
|
||||
-- Config for: barbar.nvim
|
||||
time([[Config for barbar.nvim]], true)
|
||||
require "config.barbar"
|
||||
time([[Config for barbar.nvim]], false)
|
||||
-- Config for: lualine.nvim
|
||||
time([[Config for lualine.nvim]], true)
|
||||
require "config.lualine"
|
||||
time([[Config for lualine.nvim]], false)
|
||||
-- Config for: coc.nvim
|
||||
time([[Config for coc.nvim]], true)
|
||||
require "config.coc"
|
||||
time([[Config for coc.nvim]], false)
|
||||
-- Config for: dashboard-nvim
|
||||
time([[Config for dashboard-nvim]], true)
|
||||
require "config.dashboard"
|
||||
time([[Config for dashboard-nvim]], false)
|
||||
-- Config for: toggleterm.nvim
|
||||
time([[Config for toggleterm.nvim]], true)
|
||||
require "config.toggleterm"
|
||||
time([[Config for toggleterm.nvim]], false)
|
||||
-- Config for: barbar.nvim
|
||||
time([[Config for barbar.nvim]], true)
|
||||
require "config.barbar"
|
||||
time([[Config for barbar.nvim]], false)
|
||||
-- Config for: nvim-tree.lua
|
||||
time([[Config for nvim-tree.lua]], true)
|
||||
require "config.nvim-tree"
|
||||
time([[Config for nvim-tree.lua]], false)
|
||||
-- Config for: dashboard-nvim
|
||||
time([[Config for dashboard-nvim]], true)
|
||||
require "config.dashboard"
|
||||
time([[Config for dashboard-nvim]], false)
|
||||
-- Config for: nvim-treesitter
|
||||
time([[Config for nvim-treesitter]], true)
|
||||
require "config.treesitter"
|
||||
time([[Config for nvim-treesitter]], false)
|
||||
-- Config for: lualine.nvim
|
||||
time([[Config for lualine.nvim]], true)
|
||||
require "config.lualine"
|
||||
time([[Config for lualine.nvim]], false)
|
||||
-- Config for: indent-blankline.nvim
|
||||
time([[Config for indent-blankline.nvim]], true)
|
||||
require "config.indent-blankline"
|
||||
time([[Config for indent-blankline.nvim]], false)
|
||||
-- Config for: novim-mode
|
||||
time([[Config for novim-mode]], true)
|
||||
require "config.novim"
|
||||
time([[Config for novim-mode]], false)
|
||||
-- Config for: toggleterm.nvim
|
||||
time([[Config for toggleterm.nvim]], true)
|
||||
require "config.toggleterm"
|
||||
time([[Config for toggleterm.nvim]], false)
|
||||
-- Config for: Comment.nvim
|
||||
time([[Config for Comment.nvim]], true)
|
||||
require "config.comment"
|
||||
time([[Config for Comment.nvim]], false)
|
||||
|
||||
_G._packer.inside_compile = false
|
||||
if _G._packer.needs_bufread == true then
|
||||
|
|
Reference in a new issue