nvim bugfixes
This commit is contained in:
parent
1bbb9aa7d0
commit
3624c81c64
18 changed files with 156 additions and 178 deletions
|
|
@ -1,2 +0,0 @@
|
||||||
port telescope theme from nvchad
|
|
||||||
test your dumbass keybind function
|
|
||||||
|
|
@ -2,3 +2,15 @@ require('config.options')
|
||||||
require('plugins')
|
require('plugins')
|
||||||
require('funcs').autocmd(require('config.autocmdlist'))
|
require('funcs').autocmd(require('config.autocmdlist'))
|
||||||
require('funcs').map('general')
|
require('funcs').map('general')
|
||||||
|
|
||||||
|
local icons = require('config.iconlist').diagnostics
|
||||||
|
local signs = {
|
||||||
|
DiagnosticSignError = icons.BoldError,
|
||||||
|
DiagnosticSignWarn = icons.BoldWarning,
|
||||||
|
DiagnosticSignHint = icons.BoldHint,
|
||||||
|
DiagnosticSignInfo = icons.BoldInformation
|
||||||
|
}
|
||||||
|
for type, icon in pairs(signs) do
|
||||||
|
local hl = type
|
||||||
|
vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = "" })
|
||||||
|
end
|
||||||
|
|
|
||||||
|
|
@ -13,15 +13,6 @@ return {
|
||||||
command="if &nu | set nornu | endif"
|
command="if &nu | set nornu | endif"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"FileType",
|
|
||||||
{
|
|
||||||
pattern = "zsh",
|
|
||||||
callback = function()
|
|
||||||
require("nvim-treesitter.highlight").attach(0, "bash")
|
|
||||||
end
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"BufWritePost",
|
"BufWritePost",
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -41,14 +41,6 @@ M.maps = {
|
||||||
{"<a-p>", "<cmd>lua require('illuminate').next_reference{reverse=true,wrap=true}<CR>"},
|
{"<a-p>", "<cmd>lua require('illuminate').next_reference{reverse=true,wrap=true}<CR>"},
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
toggleterm = {
|
|
||||||
t = {
|
|
||||||
{"<C-h>", [[<C-\><C-n><C-W>h]]},
|
|
||||||
{"<C-j>", [[<C-\><C-n><C-W>j]]},
|
|
||||||
{"<C-k>", [[<C-\><C-n><C-W>k]]},
|
|
||||||
{"<C-l>", [[<C-\><C-n><C-W>l]]},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
M.whichkey = {
|
M.whichkey = {
|
||||||
|
|
@ -195,15 +187,6 @@ M.whichkey = {
|
||||||
["/"] = { "<Plug>(comment_toggle_linewise_current)", "Comment toggle current line" },
|
["/"] = { "<Plug>(comment_toggle_linewise_current)", "Comment toggle current line" },
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
todo = {
|
|
||||||
n = {
|
|
||||||
t = {
|
|
||||||
name = "Todo Comments",
|
|
||||||
j = { function() require("todo-comments").jump_next() end, "Next Comment" },
|
|
||||||
k = { function() require("todo-comments").jump_prev() end, "Previous Comment" },
|
|
||||||
},
|
|
||||||
}
|
|
||||||
},
|
|
||||||
gitsigns = {
|
gitsigns = {
|
||||||
n = {
|
n = {
|
||||||
g = {
|
g = {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
-- custom formatters and diagnostic clients are handled by null-ls
|
||||||
|
-- they can be configured in the null-ls plugin config file
|
||||||
return {
|
return {
|
||||||
["sumneko_lua"] = {
|
["sumneko_lua"] = {
|
||||||
settings = {
|
settings = {
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@ o.foldexpr = "nvim_treesitter#foldexpr()"
|
||||||
o.number = true
|
o.number = true
|
||||||
o.relativenumber = true
|
o.relativenumber = true
|
||||||
o.laststatus = 3
|
o.laststatus = 3
|
||||||
o.completeopt = "menu,menuone,noselect"
|
|
||||||
|
|
||||||
g.Illuminate_ftblacklist = {'alpha', 'NvimTree'}
|
g.Illuminate_ftblacklist = {'alpha', 'NvimTree'}
|
||||||
g.mapleader = ' '
|
g.mapleader = ' '
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -38,12 +38,11 @@ end
|
||||||
dashboard.section.header.val = banner
|
dashboard.section.header.val = banner
|
||||||
|
|
||||||
dashboard.section.buttons.val = {
|
dashboard.section.buttons.val = {
|
||||||
dashboard.button("f", icons.ui.FindFile .. " Find file", ":Telescope find_files <CR>"),
|
dashboard.button("f", icons.ui.FindFile .. " Find file", ":Telescope find_files<CR>"),
|
||||||
dashboard.button("e", icons.ui.NewFile .. " New file", ":ene <BAR> startinsert <CR>"),
|
dashboard.button("n", icons.ui.NewFile .. " New file", ":ene <BAR> startinsert<CR>"),
|
||||||
dashboard.button("p", icons.ui.Project .. " Find project", ":lua require('telescope').extensions.projects.projects()<CR>"),
|
dashboard.button("p", icons.ui.Project .. " Find project", ":Telescope projects<CR>"),
|
||||||
dashboard.button("r", icons.ui.History .. " Recent files", ":Telescope oldfiles <CR>"),
|
dashboard.button("r", icons.ui.History .. " Recent files", ":Telescope oldfiles<CR>"),
|
||||||
dashboard.button("t", icons.ui.FindText .. " Find text", ":Telescope live_grep <CR>"),
|
dashboard.button("t", icons.ui.FindText .. " Find text", ":Telescope live_grep<CR>"),
|
||||||
--dashboard.button("c", icons.ui.Gear .. " Config", ":e ~/.config/nvim/init.lua <CR>"),
|
|
||||||
dashboard.button("q", icons.ui.SignOut .. " Quit", ":qa<CR>"),
|
dashboard.button("q", icons.ui.SignOut .. " Quit", ":qa<CR>"),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,11 +3,6 @@ if not cmp_status_ok then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local snip_status_ok, luasnip = pcall(require, 'luasnip')
|
|
||||||
if not snip_status_ok then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
local function border(hl_name)
|
local function border(hl_name)
|
||||||
return {
|
return {
|
||||||
{ "╭", hl_name },
|
{ "╭", hl_name },
|
||||||
|
|
@ -70,10 +65,10 @@ cmp.setup({
|
||||||
["<Tab>"] = cmp.mapping(function(fallback)
|
["<Tab>"] = cmp.mapping(function(fallback)
|
||||||
if cmp.visible() then
|
if cmp.visible() then
|
||||||
cmp.select_next_item()
|
cmp.select_next_item()
|
||||||
elseif luasnip.expandable() then
|
elseif require('luasnip').expandable() then
|
||||||
luasnip.expand()
|
require('luasnip').expand()
|
||||||
elseif luasnip.expand_or_jumpable() then
|
elseif require('luasnip').expand_or_jumpable() then
|
||||||
luasnip.expand_or_jump()
|
require('luasnip').expand_or_jump()
|
||||||
elseif check_backspace() then
|
elseif check_backspace() then
|
||||||
fallback()
|
fallback()
|
||||||
else
|
else
|
||||||
|
|
@ -86,8 +81,8 @@ cmp.setup({
|
||||||
["<S-Tab>"] = cmp.mapping(function(fallback)
|
["<S-Tab>"] = cmp.mapping(function(fallback)
|
||||||
if cmp.visible() then
|
if cmp.visible() then
|
||||||
cmp.select_prev_item()
|
cmp.select_prev_item()
|
||||||
elseif luasnip.jumpable(-1) then
|
elseif require('luasnip').jumpable(-1) then
|
||||||
luasnip.jump(-1)
|
require('luasnip').jump(-1)
|
||||||
else
|
else
|
||||||
fallback()
|
fallback()
|
||||||
end
|
end
|
||||||
|
|
|
||||||
|
|
@ -4,26 +4,8 @@ if not status_ok then
|
||||||
end
|
end
|
||||||
|
|
||||||
comment.setup({
|
comment.setup({
|
||||||
pre_hook = function(ctx)
|
mappings = {
|
||||||
-- Only calculate commentstring for tsx filetypes
|
basic = false,
|
||||||
if vim.bo.filetype == "typescriptreact" then
|
extra = false
|
||||||
local U = require("Comment.utils")
|
}
|
||||||
|
|
||||||
-- Determine whether to use linewise or blockwise commentstring
|
|
||||||
local type = ctx.ctype == U.ctype.linewise and "__default" or "__multiline"
|
|
||||||
|
|
||||||
-- Determine the location where to calculate commentstring from
|
|
||||||
local location = nil
|
|
||||||
if ctx.ctype == U.ctype.blockwise then
|
|
||||||
location = require("ts_context_commentstring.utils").get_cursor_location()
|
|
||||||
elseif ctx.cmotion == U.cmotion.v or ctx.cmotion == U.cmotion.V then
|
|
||||||
location = require("ts_context_commentstring.utils").get_visual_start_location()
|
|
||||||
end
|
|
||||||
|
|
||||||
return require("ts_context_commentstring.internal").calculate_commentstring({
|
|
||||||
key = type,
|
|
||||||
location = location,
|
|
||||||
})
|
|
||||||
end
|
|
||||||
end,
|
|
||||||
})
|
})
|
||||||
|
|
|
||||||
|
|
@ -28,6 +28,11 @@ local config = {
|
||||||
normal = { c = { fg = colors.fg, bg = colors.bg } },
|
normal = { c = { fg = colors.fg, bg = colors.bg } },
|
||||||
inactive = { c = { fg = colors.fg, bg = colors.bg } },
|
inactive = { c = { fg = colors.fg, bg = colors.bg } },
|
||||||
},
|
},
|
||||||
|
disabled_filetypes = {
|
||||||
|
statusline = { 'alpha' }
|
||||||
|
},
|
||||||
|
ignore_focus = { 'toggleterm', 'NvimTree' },
|
||||||
|
globalstatus = true,
|
||||||
},
|
},
|
||||||
sections = {
|
sections = {
|
||||||
lualine_a = {},
|
lualine_a = {},
|
||||||
|
|
|
||||||
|
|
@ -22,3 +22,4 @@ vim.api.nvim_create_autocmd("InsertLeave", {
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,17 +8,11 @@ local formatting = null_ls.builtins.formatting
|
||||||
-- https://github.com/jose-elias-alvarez/null-ls.nvim/tree/main/lua/null-ls/builtins/diagnostics
|
-- https://github.com/jose-elias-alvarez/null-ls.nvim/tree/main/lua/null-ls/builtins/diagnostics
|
||||||
local diagnostics = null_ls.builtins.diagnostics
|
local diagnostics = null_ls.builtins.diagnostics
|
||||||
|
|
||||||
-- https://github.com/prettier-solidity/prettier-plugin-solidity
|
|
||||||
null_ls.setup {
|
null_ls.setup {
|
||||||
debug = false,
|
debug = false,
|
||||||
sources = {
|
sources = {
|
||||||
formatting.prettier.with {
|
-- formatting.black.with { extra_args = { "--fast" } },
|
||||||
extra_filetypes = { "toml" },
|
-- formatting.stylua,
|
||||||
extra_args = { "--no-semi", "--single-quote", "--jsx-single-quote" },
|
-- diagnostics.flake8,
|
||||||
},
|
|
||||||
formatting.black.with { extra_args = { "--fast" } },
|
|
||||||
formatting.stylua,
|
|
||||||
formatting.google_java_format,
|
|
||||||
diagnostics.flake8,
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,6 @@ local status_ok, colorizer = pcall(require, 'colorizer')
|
||||||
if not status_ok then
|
if not status_ok then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
colorizer.setup({ '*' }, {
|
colorizer.setup({ '*' }, {
|
||||||
RGB = true, -- #RGB hex codes
|
RGB = true, -- #RGB hex codes
|
||||||
RRGGBB = true, -- #RRGGBB hex codes
|
RRGGBB = true, -- #RRGGBB hex codes
|
||||||
|
|
|
||||||
|
|
@ -23,8 +23,8 @@ nvim_tree.setup {
|
||||||
default = icons.ui.File,
|
default = icons.ui.File,
|
||||||
symlink = icons.ui.FileSymlink,
|
symlink = icons.ui.FileSymlink,
|
||||||
folder = {
|
folder = {
|
||||||
arrow_open = ChevronShortDown,
|
arrow_open = icons.ui.ChevronShortDown,
|
||||||
arrow_closed = ChevronShortRight,
|
arrow_closed = icons.ui.ChevronShortRight,
|
||||||
default = icons.ui.Folder,
|
default = icons.ui.Folder,
|
||||||
open = icons.ui.FolderOpen,
|
open = icons.ui.FolderOpen,
|
||||||
empty = icons.ui.EmptyFolder,
|
empty = icons.ui.EmptyFolder,
|
||||||
|
|
|
||||||
|
|
@ -20,8 +20,6 @@ toggleterm.setup({
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
vim.cmd("autocmd! TermOpen term://* lua require('core.funcs').map('toggleterm')")
|
|
||||||
|
|
||||||
local Terminal = require("toggleterm.terminal").Terminal
|
local Terminal = require("toggleterm.terminal").Terminal
|
||||||
local lazygit = Terminal:new({ cmd = "lazygit", hidden = true })
|
local lazygit = Terminal:new({ cmd = "lazygit", hidden = true })
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,3 @@
|
||||||
local status_ok, treesitter = pcall(require, 'nvim-treesitter')
|
|
||||||
if not status_ok then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
local status_ok, configs = pcall(require, 'nvim-treesitter.configs')
|
local status_ok, configs = pcall(require, 'nvim-treesitter.configs')
|
||||||
if not status_ok then
|
if not status_ok then
|
||||||
return
|
return
|
||||||
|
|
@ -13,7 +8,6 @@ configs.setup({
|
||||||
-- ensure_installed = "all", -- one of "all" or a list of languages
|
-- ensure_installed = "all", -- one of "all" or a list of languages
|
||||||
ignore_install = { "" }, -- List of parsers to ignore installing
|
ignore_install = { "" }, -- List of parsers to ignore installing
|
||||||
sync_install = false, -- install languages synchronously (only applied to `ensure_installed`)
|
sync_install = false, -- install languages synchronously (only applied to `ensure_installed`)
|
||||||
|
|
||||||
highlight = {
|
highlight = {
|
||||||
enable = true, -- false will disable the whole extension
|
enable = true, -- false will disable the whole extension
|
||||||
disable = { "css" }, -- list of language that will be disabled
|
disable = { "css" }, -- list of language that will be disabled
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,11 @@ local plugins = {
|
||||||
ft = "kitty"
|
ft = "kitty"
|
||||||
},
|
},
|
||||||
{ "kyazdani42/nvim-web-devicons" },
|
{ "kyazdani42/nvim-web-devicons" },
|
||||||
{ "felipec/vim-sanegx" },
|
{ "felipec/vim-sanegx",
|
||||||
|
setup = function()
|
||||||
|
require('funcs').on_file_open("vim-sanegx")
|
||||||
|
end
|
||||||
|
},
|
||||||
{ "folke/which-key.nvim",
|
{ "folke/which-key.nvim",
|
||||||
config = function()
|
config = function()
|
||||||
require "plugins.config.whichkey"
|
require "plugins.config.whichkey"
|
||||||
|
|
@ -34,7 +38,6 @@ local plugins = {
|
||||||
after = "which-key.nvim",
|
after = "which-key.nvim",
|
||||||
setup = function()
|
setup = function()
|
||||||
require('funcs').on_file_open("todo-comments.nvim")
|
require('funcs').on_file_open("todo-comments.nvim")
|
||||||
require('funcs').map("todo")
|
|
||||||
end,
|
end,
|
||||||
config = function()
|
config = function()
|
||||||
require('plugins.config.todo-comments')
|
require('plugins.config.todo-comments')
|
||||||
|
|
@ -52,6 +55,9 @@ local plugins = {
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{ "nvim-lualine/lualine.nvim",
|
{ "nvim-lualine/lualine.nvim",
|
||||||
|
setup = function()
|
||||||
|
require('funcs').on_file_open("lualine.nvim")
|
||||||
|
end,
|
||||||
config = function()
|
config = function()
|
||||||
require("plugins.config.lualine")
|
require("plugins.config.lualine")
|
||||||
end,
|
end,
|
||||||
|
|
@ -83,6 +89,7 @@ local plugins = {
|
||||||
},
|
},
|
||||||
{ "RRethy/vim-illuminate",
|
{ "RRethy/vim-illuminate",
|
||||||
opt = true,
|
opt = true,
|
||||||
|
after = "which-key.nvim",
|
||||||
setup = function()
|
setup = function()
|
||||||
require('funcs').on_file_open("vim-illuminate")
|
require('funcs').on_file_open("vim-illuminate")
|
||||||
require('funcs').map("illuminate")
|
require('funcs').map("illuminate")
|
||||||
|
|
@ -160,6 +167,7 @@ local plugins = {
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{ "rafamadriz/friendly-snippets",
|
{ "rafamadriz/friendly-snippets",
|
||||||
|
event = "InsertEnter",
|
||||||
module = { "cmp", "cmp_nvim_lsp" },
|
module = { "cmp", "cmp_nvim_lsp" },
|
||||||
},
|
},
|
||||||
{ "hrsh7th/nvim-cmp",
|
{ "hrsh7th/nvim-cmp",
|
||||||
|
|
@ -191,13 +199,12 @@ local plugins = {
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{ "numToStr/Comment.nvim",
|
{ "numToStr/Comment.nvim",
|
||||||
module = "Comment",
|
|
||||||
after = "which-key.nvim",
|
after = "which-key.nvim",
|
||||||
keys = { "gc", "gb" },
|
|
||||||
config = function()
|
config = function()
|
||||||
require("plugins.config.comment")
|
require("plugins.config.comment")
|
||||||
end,
|
end,
|
||||||
setup = function()
|
setup = function()
|
||||||
|
require('funcs').on_file_open("Comment.nvim")
|
||||||
require('funcs').map("comment")
|
require('funcs').map("comment")
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
@ -223,8 +230,7 @@ local plugins = {
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{ "ahmedkhalf/project.nvim",
|
{ "ahmedkhalf/project.nvim",
|
||||||
ft = "alpha",
|
cmd = "Telescope",
|
||||||
cmd = "lua require('telescope').extensions.projects.projects()<CR>",
|
|
||||||
after = "telescope.nvim",
|
after = "telescope.nvim",
|
||||||
config = function()
|
config = function()
|
||||||
require("plugins.config.project")
|
require("plugins.config.project")
|
||||||
|
|
|
||||||
|
|
@ -76,11 +76,9 @@ time([[Defining packer_plugins]], true)
|
||||||
_G.packer_plugins = {
|
_G.packer_plugins = {
|
||||||
["Comment.nvim"] = {
|
["Comment.nvim"] = {
|
||||||
config = { "\27LJ\2\n6\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\27plugins.config.comment\frequire\0" },
|
config = { "\27LJ\2\n6\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\27plugins.config.comment\frequire\0" },
|
||||||
keys = { { "", "gc" }, { "", "gb" } },
|
|
||||||
load_after = {},
|
load_after = {},
|
||||||
loaded = false,
|
loaded = true,
|
||||||
needs_bufread = false,
|
needs_bufread = false,
|
||||||
only_cond = false,
|
|
||||||
path = "/home/luca/.local/share/nvim/site/pack/packer/opt/Comment.nvim",
|
path = "/home/luca/.local/share/nvim/site/pack/packer/opt/Comment.nvim",
|
||||||
url = "https://github.com/numToStr/Comment.nvim"
|
url = "https://github.com/numToStr/Comment.nvim"
|
||||||
},
|
},
|
||||||
|
|
@ -195,7 +193,8 @@ _G.packer_plugins = {
|
||||||
["lualine.nvim"] = {
|
["lualine.nvim"] = {
|
||||||
config = { "\27LJ\2\n6\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\27plugins.config.lualine\frequire\0" },
|
config = { "\27LJ\2\n6\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\27plugins.config.lualine\frequire\0" },
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/home/luca/.local/share/nvim/site/pack/packer/start/lualine.nvim",
|
needs_bufread = false,
|
||||||
|
path = "/home/luca/.local/share/nvim/site/pack/packer/opt/lualine.nvim",
|
||||||
url = "https://github.com/nvim-lualine/lualine.nvim"
|
url = "https://github.com/nvim-lualine/lualine.nvim"
|
||||||
},
|
},
|
||||||
["mason-lspconfig.nvim"] = {
|
["mason-lspconfig.nvim"] = {
|
||||||
|
|
@ -227,7 +226,7 @@ _G.packer_plugins = {
|
||||||
url = "https://github.com/windwp/nvim-autopairs"
|
url = "https://github.com/windwp/nvim-autopairs"
|
||||||
},
|
},
|
||||||
["nvim-cmp"] = {
|
["nvim-cmp"] = {
|
||||||
after = { "nvim-autopairs", "LuaSnip" },
|
after = { "LuaSnip", "nvim-autopairs" },
|
||||||
config = { "\27LJ\2\n2\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\23plugins.config.cmp\frequire\0" },
|
config = { "\27LJ\2\n2\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\23plugins.config.cmp\frequire\0" },
|
||||||
load_after = {
|
load_after = {
|
||||||
["friendly-snippets"] = true
|
["friendly-snippets"] = true
|
||||||
|
|
@ -304,7 +303,7 @@ _G.packer_plugins = {
|
||||||
url = "https://github.com/nvim-lua/plenary.nvim"
|
url = "https://github.com/nvim-lua/plenary.nvim"
|
||||||
},
|
},
|
||||||
["project.nvim"] = {
|
["project.nvim"] = {
|
||||||
commands = { "lua require('telescope').extensions.projects.projects()<CR>" },
|
commands = { "Telescope" },
|
||||||
config = { "\27LJ\2\n6\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\27plugins.config.project\frequire\0" },
|
config = { "\27LJ\2\n6\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\27plugins.config.project\frequire\0" },
|
||||||
load_after = {
|
load_after = {
|
||||||
["telescope.nvim"] = true
|
["telescope.nvim"] = true
|
||||||
|
|
@ -348,6 +347,7 @@ _G.packer_plugins = {
|
||||||
},
|
},
|
||||||
["vim-illuminate"] = {
|
["vim-illuminate"] = {
|
||||||
config = { "\27LJ\2\n9\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\30plugins.config.illuminate\frequire\0" },
|
config = { "\27LJ\2\n9\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\30plugins.config.illuminate\frequire\0" },
|
||||||
|
load_after = {},
|
||||||
loaded = false,
|
loaded = false,
|
||||||
needs_bufread = false,
|
needs_bufread = false,
|
||||||
path = "/home/luca/.local/share/nvim/site/pack/packer/opt/vim-illuminate",
|
path = "/home/luca/.local/share/nvim/site/pack/packer/opt/vim-illuminate",
|
||||||
|
|
@ -368,7 +368,8 @@ _G.packer_plugins = {
|
||||||
},
|
},
|
||||||
["vim-sanegx"] = {
|
["vim-sanegx"] = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/home/luca/.local/share/nvim/site/pack/packer/start/vim-sanegx",
|
needs_bufread = false,
|
||||||
|
path = "/home/luca/.local/share/nvim/site/pack/packer/opt/vim-sanegx",
|
||||||
url = "https://github.com/felipec/vim-sanegx"
|
url = "https://github.com/felipec/vim-sanegx"
|
||||||
},
|
},
|
||||||
["vim-surround"] = {
|
["vim-surround"] = {
|
||||||
|
|
@ -378,7 +379,7 @@ _G.packer_plugins = {
|
||||||
url = "https://github.com/tpope/vim-surround"
|
url = "https://github.com/tpope/vim-surround"
|
||||||
},
|
},
|
||||||
["which-key.nvim"] = {
|
["which-key.nvim"] = {
|
||||||
after = { "indent-blankline.nvim", "telescope.nvim", "todo-comments.nvim", "bufferline.nvim", "nvim-tree.lua", "Comment.nvim" },
|
after = { "telescope.nvim", "indent-blankline.nvim", "vim-illuminate", "nvim-tree.lua", "todo-comments.nvim", "bufferline.nvim", "Comment.nvim" },
|
||||||
config = { "\27LJ\2\n7\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\28plugins.config.whichkey\frequire\0" },
|
config = { "\27LJ\2\n7\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\28plugins.config.whichkey\frequire\0" },
|
||||||
loaded = true,
|
loaded = true,
|
||||||
only_config = true,
|
only_config = true,
|
||||||
|
|
@ -389,7 +390,6 @@ _G.packer_plugins = {
|
||||||
|
|
||||||
time([[Defining packer_plugins]], false)
|
time([[Defining packer_plugins]], false)
|
||||||
local module_lazy_loads = {
|
local module_lazy_loads = {
|
||||||
["^Comment"] = "Comment.nvim",
|
|
||||||
["^cmp"] = "friendly-snippets",
|
["^cmp"] = "friendly-snippets",
|
||||||
["^cmp_nvim_lsp"] = "friendly-snippets"
|
["^cmp_nvim_lsp"] = "friendly-snippets"
|
||||||
}
|
}
|
||||||
|
|
@ -418,30 +418,21 @@ if not vim.g.packer_custom_loader_enabled then
|
||||||
vim.g.packer_custom_loader_enabled = true
|
vim.g.packer_custom_loader_enabled = true
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Setup for: Comment.nvim
|
-- Setup for: lualine.nvim
|
||||||
time([[Setup for Comment.nvim]], true)
|
time([[Setup for lualine.nvim]], true)
|
||||||
try_loadstring("\27LJ\2\n=\0\0\3\0\4\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0'\2\3\0B\0\2\1K\0\1\0\fcomment\bmap\nfuncs\frequire\0", "setup", "Comment.nvim")
|
try_loadstring("\27LJ\2\nK\0\0\3\0\4\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0'\2\3\0B\0\2\1K\0\1\0\17lualine.nvim\17on_file_open\nfuncs\frequire\0", "setup", "lualine.nvim")
|
||||||
time([[Setup for Comment.nvim]], false)
|
time([[Setup for lualine.nvim]], false)
|
||||||
|
time([[packadd for lualine.nvim]], true)
|
||||||
|
vim.cmd [[packadd lualine.nvim]]
|
||||||
|
time([[packadd for lualine.nvim]], false)
|
||||||
|
-- Setup for: telescope.nvim
|
||||||
|
time([[Setup for telescope.nvim]], true)
|
||||||
|
try_loadstring("\27LJ\2\n?\0\0\3\0\4\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0'\2\3\0B\0\2\1K\0\1\0\14telescope\bmap\nfuncs\frequire\0", "setup", "telescope.nvim")
|
||||||
|
time([[Setup for telescope.nvim]], false)
|
||||||
-- Setup for: indent-blankline.nvim
|
-- Setup for: indent-blankline.nvim
|
||||||
time([[Setup for indent-blankline.nvim]], true)
|
time([[Setup for indent-blankline.nvim]], true)
|
||||||
try_loadstring("\27LJ\2\nz\0\0\3\0\6\0\r6\0\0\0'\2\1\0B\0\2\0029\0\2\0'\2\3\0B\0\2\0016\0\0\0'\2\1\0B\0\2\0029\0\4\0'\2\5\0B\0\2\1K\0\1\0\14blankline\bmap\26indent-blankline.nvim\17on_file_open\nfuncs\frequire\0", "setup", "indent-blankline.nvim")
|
try_loadstring("\27LJ\2\nz\0\0\3\0\6\0\r6\0\0\0'\2\1\0B\0\2\0029\0\2\0'\2\3\0B\0\2\0016\0\0\0'\2\1\0B\0\2\0029\0\4\0'\2\5\0B\0\2\1K\0\1\0\14blankline\bmap\26indent-blankline.nvim\17on_file_open\nfuncs\frequire\0", "setup", "indent-blankline.nvim")
|
||||||
time([[Setup for indent-blankline.nvim]], false)
|
time([[Setup for indent-blankline.nvim]], false)
|
||||||
-- Setup for: nvim-tree.lua
|
|
||||||
time([[Setup for nvim-tree.lua]], true)
|
|
||||||
try_loadstring("\27LJ\2\n>\0\0\3\0\4\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0'\2\3\0B\0\2\1K\0\1\0\rnvimtree\bmap\nfuncs\frequire\0", "setup", "nvim-tree.lua")
|
|
||||||
time([[Setup for nvim-tree.lua]], false)
|
|
||||||
-- Setup for: nvim-dap
|
|
||||||
time([[Setup for nvim-dap]], true)
|
|
||||||
try_loadstring("\27LJ\2\nG\0\0\3\0\4\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0'\2\3\0B\0\2\1K\0\1\0\rnvim-dap\17on_file_open\nfuncs\frequire\0", "setup", "nvim-dap")
|
|
||||||
time([[Setup for nvim-dap]], false)
|
|
||||||
-- Setup for: gitsigns.nvim
|
|
||||||
time([[Setup for gitsigns.nvim]], true)
|
|
||||||
try_loadstring("\27LJ\2\n6\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\rgitsigns\nfuncs\frequire\0", "setup", "gitsigns.nvim")
|
|
||||||
time([[Setup for gitsigns.nvim]], false)
|
|
||||||
-- Setup for: nvim-colorizer.lua
|
|
||||||
time([[Setup for nvim-colorizer.lua]], true)
|
|
||||||
try_loadstring("\27LJ\2\nQ\0\0\3\0\4\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0'\2\3\0B\0\2\1K\0\1\0\23nvim-colorizer.lua\17on_file_open\nfuncs\frequire\0", "setup", "nvim-colorizer.lua")
|
|
||||||
time([[Setup for nvim-colorizer.lua]], false)
|
|
||||||
-- Setup for: vim-surround
|
-- Setup for: vim-surround
|
||||||
time([[Setup for vim-surround]], true)
|
time([[Setup for vim-surround]], true)
|
||||||
try_loadstring("\27LJ\2\nK\0\0\3\0\4\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0'\2\3\0B\0\2\1K\0\1\0\17vim-surround\17on_file_open\nfuncs\frequire\0", "setup", "vim-surround")
|
try_loadstring("\27LJ\2\nK\0\0\3\0\4\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0'\2\3\0B\0\2\1K\0\1\0\17vim-surround\17on_file_open\nfuncs\frequire\0", "setup", "vim-surround")
|
||||||
|
|
@ -449,18 +440,6 @@ time([[Setup for vim-surround]], false)
|
||||||
time([[packadd for vim-surround]], true)
|
time([[packadd for vim-surround]], true)
|
||||||
vim.cmd [[packadd vim-surround]]
|
vim.cmd [[packadd vim-surround]]
|
||||||
time([[packadd for vim-surround]], false)
|
time([[packadd for vim-surround]], false)
|
||||||
-- Setup for: todo-comments.nvim
|
|
||||||
time([[Setup for todo-comments.nvim]], true)
|
|
||||||
try_loadstring("\27LJ\2\nr\0\0\3\0\6\0\r6\0\0\0'\2\1\0B\0\2\0029\0\2\0'\2\3\0B\0\2\0016\0\0\0'\2\1\0B\0\2\0029\0\4\0'\2\5\0B\0\2\1K\0\1\0\ttodo\bmap\23todo-comments.nvim\17on_file_open\nfuncs\frequire\0", "setup", "todo-comments.nvim")
|
|
||||||
time([[Setup for todo-comments.nvim]], false)
|
|
||||||
-- Setup for: vim-illuminate
|
|
||||||
time([[Setup for vim-illuminate]], true)
|
|
||||||
try_loadstring("\27LJ\2\nt\0\0\3\0\6\0\r6\0\0\0'\2\1\0B\0\2\0029\0\2\0'\2\3\0B\0\2\0016\0\0\0'\2\1\0B\0\2\0029\0\4\0'\2\5\0B\0\2\1K\0\1\0\15illuminate\bmap\19vim-illuminate\17on_file_open\nfuncs\frequire\0", "setup", "vim-illuminate")
|
|
||||||
time([[Setup for vim-illuminate]], false)
|
|
||||||
-- Setup for: bufferline.nvim
|
|
||||||
time([[Setup for bufferline.nvim]], true)
|
|
||||||
try_loadstring("\27LJ\2\nu\0\0\3\0\6\0\r6\0\0\0'\2\1\0B\0\2\0029\0\2\0'\2\3\0B\0\2\0016\0\0\0'\2\1\0B\0\2\0029\0\4\0'\2\5\0B\0\2\1K\0\1\0\15bufferline\bmap\20bufferline.nvim\17on_file_open\nfuncs\frequire\0", "setup", "bufferline.nvim")
|
|
||||||
time([[Setup for bufferline.nvim]], false)
|
|
||||||
-- Setup for: vim-repeat
|
-- Setup for: vim-repeat
|
||||||
time([[Setup for vim-repeat]], true)
|
time([[Setup for vim-repeat]], true)
|
||||||
try_loadstring("\27LJ\2\nI\0\0\3\0\4\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0'\2\3\0B\0\2\1K\0\1\0\15vim-repeat\17on_file_open\nfuncs\frequire\0", "setup", "vim-repeat")
|
try_loadstring("\27LJ\2\nI\0\0\3\0\4\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0'\2\3\0B\0\2\1K\0\1\0\15vim-repeat\17on_file_open\nfuncs\frequire\0", "setup", "vim-repeat")
|
||||||
|
|
@ -468,18 +447,10 @@ time([[Setup for vim-repeat]], false)
|
||||||
time([[packadd for vim-repeat]], true)
|
time([[packadd for vim-repeat]], true)
|
||||||
vim.cmd [[packadd vim-repeat]]
|
vim.cmd [[packadd vim-repeat]]
|
||||||
time([[packadd for vim-repeat]], false)
|
time([[packadd for vim-repeat]], false)
|
||||||
-- Setup for: telescope.nvim
|
-- Setup for: vim-illuminate
|
||||||
time([[Setup for telescope.nvim]], true)
|
time([[Setup for vim-illuminate]], true)
|
||||||
try_loadstring("\27LJ\2\n?\0\0\3\0\4\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0'\2\3\0B\0\2\1K\0\1\0\14telescope\bmap\nfuncs\frequire\0", "setup", "telescope.nvim")
|
try_loadstring("\27LJ\2\nt\0\0\3\0\6\0\r6\0\0\0'\2\1\0B\0\2\0029\0\2\0'\2\3\0B\0\2\0016\0\0\0'\2\1\0B\0\2\0029\0\4\0'\2\5\0B\0\2\1K\0\1\0\15illuminate\bmap\19vim-illuminate\17on_file_open\nfuncs\frequire\0", "setup", "vim-illuminate")
|
||||||
time([[Setup for telescope.nvim]], false)
|
time([[Setup for vim-illuminate]], false)
|
||||||
-- Setup for: nvim-treesitter
|
|
||||||
time([[Setup for nvim-treesitter]], true)
|
|
||||||
try_loadstring("\27LJ\2\nN\0\0\3\0\4\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0'\2\3\0B\0\2\1K\0\1\0\20nvim-treesitter\17on_file_open\nfuncs\frequire\0", "setup", "nvim-treesitter")
|
|
||||||
time([[Setup for nvim-treesitter]], false)
|
|
||||||
-- Setup for: nvim-dap-ui
|
|
||||||
time([[Setup for nvim-dap-ui]], true)
|
|
||||||
try_loadstring("\27LJ\2\nJ\0\0\3\0\4\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0'\2\3\0B\0\2\1K\0\1\0\16nvim-dap-ui\17on_file_open\nfuncs\frequire\0", "setup", "nvim-dap-ui")
|
|
||||||
time([[Setup for nvim-dap-ui]], false)
|
|
||||||
-- Setup for: nvim-lspconfig
|
-- Setup for: nvim-lspconfig
|
||||||
time([[Setup for nvim-lspconfig]], true)
|
time([[Setup for nvim-lspconfig]], true)
|
||||||
try_loadstring("\27LJ\2\nM\0\0\3\0\4\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0'\2\3\0B\0\2\1K\0\1\0\19nvim-lspconfig\17on_file_open\nfuncs\frequire\0", "setup", "nvim-lspconfig")
|
try_loadstring("\27LJ\2\nM\0\0\3\0\4\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0'\2\3\0B\0\2\1K\0\1\0\19nvim-lspconfig\17on_file_open\nfuncs\frequire\0", "setup", "nvim-lspconfig")
|
||||||
|
|
@ -487,6 +458,65 @@ time([[Setup for nvim-lspconfig]], false)
|
||||||
time([[packadd for nvim-lspconfig]], true)
|
time([[packadd for nvim-lspconfig]], true)
|
||||||
vim.cmd [[packadd nvim-lspconfig]]
|
vim.cmd [[packadd nvim-lspconfig]]
|
||||||
time([[packadd for nvim-lspconfig]], false)
|
time([[packadd for nvim-lspconfig]], false)
|
||||||
|
-- Setup for: vim-sanegx
|
||||||
|
time([[Setup for vim-sanegx]], true)
|
||||||
|
try_loadstring("\27LJ\2\nI\0\0\3\0\4\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0'\2\3\0B\0\2\1K\0\1\0\15vim-sanegx\17on_file_open\nfuncs\frequire\0", "setup", "vim-sanegx")
|
||||||
|
time([[Setup for vim-sanegx]], false)
|
||||||
|
time([[packadd for vim-sanegx]], true)
|
||||||
|
vim.cmd [[packadd vim-sanegx]]
|
||||||
|
time([[packadd for vim-sanegx]], false)
|
||||||
|
-- Setup for: Comment.nvim
|
||||||
|
time([[Setup for Comment.nvim]], true)
|
||||||
|
try_loadstring("\27LJ\2\no\0\0\3\0\6\0\r6\0\0\0'\2\1\0B\0\2\0029\0\2\0'\2\3\0B\0\2\0016\0\0\0'\2\1\0B\0\2\0029\0\4\0'\2\5\0B\0\2\1K\0\1\0\fcomment\bmap\17Comment.nvim\17on_file_open\nfuncs\frequire\0", "setup", "Comment.nvim")
|
||||||
|
time([[Setup for Comment.nvim]], false)
|
||||||
|
-- Setup for: nvim-dap-ui
|
||||||
|
time([[Setup for nvim-dap-ui]], true)
|
||||||
|
try_loadstring("\27LJ\2\nJ\0\0\3\0\4\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0'\2\3\0B\0\2\1K\0\1\0\16nvim-dap-ui\17on_file_open\nfuncs\frequire\0", "setup", "nvim-dap-ui")
|
||||||
|
time([[Setup for nvim-dap-ui]], false)
|
||||||
|
-- Setup for: todo-comments.nvim
|
||||||
|
time([[Setup for todo-comments.nvim]], true)
|
||||||
|
try_loadstring("\27LJ\2\nQ\0\0\3\0\4\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0'\2\3\0B\0\2\1K\0\1\0\23todo-comments.nvim\17on_file_open\nfuncs\frequire\0", "setup", "todo-comments.nvim")
|
||||||
|
time([[Setup for todo-comments.nvim]], false)
|
||||||
|
-- Setup for: nvim-colorizer.lua
|
||||||
|
time([[Setup for nvim-colorizer.lua]], true)
|
||||||
|
try_loadstring("\27LJ\2\nQ\0\0\3\0\4\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0'\2\3\0B\0\2\1K\0\1\0\23nvim-colorizer.lua\17on_file_open\nfuncs\frequire\0", "setup", "nvim-colorizer.lua")
|
||||||
|
time([[Setup for nvim-colorizer.lua]], false)
|
||||||
|
-- Setup for: gitsigns.nvim
|
||||||
|
time([[Setup for gitsigns.nvim]], true)
|
||||||
|
try_loadstring("\27LJ\2\n6\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\rgitsigns\nfuncs\frequire\0", "setup", "gitsigns.nvim")
|
||||||
|
time([[Setup for gitsigns.nvim]], false)
|
||||||
|
-- Setup for: bufferline.nvim
|
||||||
|
time([[Setup for bufferline.nvim]], true)
|
||||||
|
try_loadstring("\27LJ\2\nu\0\0\3\0\6\0\r6\0\0\0'\2\1\0B\0\2\0029\0\2\0'\2\3\0B\0\2\0016\0\0\0'\2\1\0B\0\2\0029\0\4\0'\2\5\0B\0\2\1K\0\1\0\15bufferline\bmap\20bufferline.nvim\17on_file_open\nfuncs\frequire\0", "setup", "bufferline.nvim")
|
||||||
|
time([[Setup for bufferline.nvim]], false)
|
||||||
|
-- Setup for: nvim-tree.lua
|
||||||
|
time([[Setup for nvim-tree.lua]], true)
|
||||||
|
try_loadstring("\27LJ\2\n>\0\0\3\0\4\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0'\2\3\0B\0\2\1K\0\1\0\rnvimtree\bmap\nfuncs\frequire\0", "setup", "nvim-tree.lua")
|
||||||
|
time([[Setup for nvim-tree.lua]], false)
|
||||||
|
-- Setup for: nvim-treesitter
|
||||||
|
time([[Setup for nvim-treesitter]], true)
|
||||||
|
try_loadstring("\27LJ\2\nN\0\0\3\0\4\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0'\2\3\0B\0\2\1K\0\1\0\20nvim-treesitter\17on_file_open\nfuncs\frequire\0", "setup", "nvim-treesitter")
|
||||||
|
time([[Setup for nvim-treesitter]], false)
|
||||||
|
-- Setup for: nvim-dap
|
||||||
|
time([[Setup for nvim-dap]], true)
|
||||||
|
try_loadstring("\27LJ\2\nG\0\0\3\0\4\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0'\2\3\0B\0\2\1K\0\1\0\rnvim-dap\17on_file_open\nfuncs\frequire\0", "setup", "nvim-dap")
|
||||||
|
time([[Setup for nvim-dap]], false)
|
||||||
|
-- Config for: lualine.nvim
|
||||||
|
time([[Config for lualine.nvim]], true)
|
||||||
|
try_loadstring("\27LJ\2\n6\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\27plugins.config.lualine\frequire\0", "config", "lualine.nvim")
|
||||||
|
time([[Config for lualine.nvim]], false)
|
||||||
|
-- Config for: toggleterm.nvim
|
||||||
|
time([[Config for toggleterm.nvim]], true)
|
||||||
|
try_loadstring("\27LJ\2\n9\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\30plugins.config.toggleterm\frequire\0", "config", "toggleterm.nvim")
|
||||||
|
time([[Config for toggleterm.nvim]], false)
|
||||||
|
-- Config for: mason.nvim
|
||||||
|
time([[Config for mason.nvim]], true)
|
||||||
|
try_loadstring("\27LJ\2\n4\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\25plugins.config.mason\frequire\0", "config", "mason.nvim")
|
||||||
|
time([[Config for mason.nvim]], false)
|
||||||
|
-- Config for: tokyonight.nvim
|
||||||
|
time([[Config for tokyonight.nvim]], true)
|
||||||
|
try_loadstring("\27LJ\2\n9\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\30plugins.config.tokyonight\frequire\0", "config", "tokyonight.nvim")
|
||||||
|
time([[Config for tokyonight.nvim]], false)
|
||||||
-- Config for: null-ls.nvim
|
-- Config for: null-ls.nvim
|
||||||
time([[Config for null-ls.nvim]], true)
|
time([[Config for null-ls.nvim]], true)
|
||||||
try_loadstring("\27LJ\2\n6\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\27plugins.config.null-ls\frequire\0", "config", "null-ls.nvim")
|
try_loadstring("\27LJ\2\n6\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\27plugins.config.null-ls\frequire\0", "config", "null-ls.nvim")
|
||||||
|
|
@ -499,59 +529,48 @@ time([[Config for alpha-nvim]], false)
|
||||||
time([[Config for which-key.nvim]], true)
|
time([[Config for which-key.nvim]], true)
|
||||||
try_loadstring("\27LJ\2\n7\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\28plugins.config.whichkey\frequire\0", "config", "which-key.nvim")
|
try_loadstring("\27LJ\2\n7\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\28plugins.config.whichkey\frequire\0", "config", "which-key.nvim")
|
||||||
time([[Config for which-key.nvim]], false)
|
time([[Config for which-key.nvim]], false)
|
||||||
-- Config for: lualine.nvim
|
|
||||||
time([[Config for lualine.nvim]], true)
|
|
||||||
try_loadstring("\27LJ\2\n6\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\27plugins.config.lualine\frequire\0", "config", "lualine.nvim")
|
|
||||||
time([[Config for lualine.nvim]], false)
|
|
||||||
-- Config for: mason-lspconfig.nvim
|
|
||||||
time([[Config for mason-lspconfig.nvim]], true)
|
|
||||||
try_loadstring("\27LJ\2\n>\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0#plugins.config.mason-lspconfig\frequire\0", "config", "mason-lspconfig.nvim")
|
|
||||||
time([[Config for mason-lspconfig.nvim]], false)
|
|
||||||
-- Config for: tokyonight.nvim
|
|
||||||
time([[Config for tokyonight.nvim]], true)
|
|
||||||
try_loadstring("\27LJ\2\n9\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\30plugins.config.tokyonight\frequire\0", "config", "tokyonight.nvim")
|
|
||||||
time([[Config for tokyonight.nvim]], false)
|
|
||||||
-- Config for: toggleterm.nvim
|
|
||||||
time([[Config for toggleterm.nvim]], true)
|
|
||||||
try_loadstring("\27LJ\2\n9\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\30plugins.config.toggleterm\frequire\0", "config", "toggleterm.nvim")
|
|
||||||
time([[Config for toggleterm.nvim]], false)
|
|
||||||
-- Config for: mason.nvim
|
|
||||||
time([[Config for mason.nvim]], true)
|
|
||||||
try_loadstring("\27LJ\2\n4\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\25plugins.config.mason\frequire\0", "config", "mason.nvim")
|
|
||||||
time([[Config for mason.nvim]], false)
|
|
||||||
-- Config for: nvim-lspconfig
|
-- Config for: nvim-lspconfig
|
||||||
time([[Config for nvim-lspconfig]], true)
|
time([[Config for nvim-lspconfig]], true)
|
||||||
try_loadstring("\27LJ\2\n8\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\29plugins.config.lspconfig\frequire\0", "config", "nvim-lspconfig")
|
try_loadstring("\27LJ\2\n8\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\29plugins.config.lspconfig\frequire\0", "config", "nvim-lspconfig")
|
||||||
time([[Config for nvim-lspconfig]], false)
|
time([[Config for nvim-lspconfig]], false)
|
||||||
|
-- Config for: mason-lspconfig.nvim
|
||||||
|
time([[Config for mason-lspconfig.nvim]], true)
|
||||||
|
try_loadstring("\27LJ\2\n>\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0#plugins.config.mason-lspconfig\frequire\0", "config", "mason-lspconfig.nvim")
|
||||||
|
time([[Config for mason-lspconfig.nvim]], false)
|
||||||
|
-- Load plugins in order defined by `after`
|
||||||
|
time([[Sequenced loading]], true)
|
||||||
|
vim.cmd [[ packadd Comment.nvim ]]
|
||||||
|
|
||||||
|
-- Config for: Comment.nvim
|
||||||
|
try_loadstring("\27LJ\2\n6\0\0\3\0\2\0\0046\0\0\0'\2\1\0B\0\2\1K\0\1\0\27plugins.config.comment\frequire\0", "config", "Comment.nvim")
|
||||||
|
|
||||||
|
time([[Sequenced loading]], false)
|
||||||
|
|
||||||
-- Command lazy-loads
|
-- Command lazy-loads
|
||||||
time([[Defining lazy-load commands]], true)
|
time([[Defining lazy-load commands]], true)
|
||||||
|
pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file TSBufEnable lua require("packer.load")({'nvim-treesitter'}, { cmd = "TSBufEnable", l1 = <line1>, l2 = <line2>, bang = <q-bang>, args = <q-args>, mods = "<mods>" }, _G.packer_plugins)]])
|
||||||
pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file TSBufDisable lua require("packer.load")({'nvim-treesitter'}, { cmd = "TSBufDisable", l1 = <line1>, l2 = <line2>, bang = <q-bang>, args = <q-args>, mods = "<mods>" }, _G.packer_plugins)]])
|
pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file TSBufDisable lua require("packer.load")({'nvim-treesitter'}, { cmd = "TSBufDisable", l1 = <line1>, l2 = <line2>, bang = <q-bang>, args = <q-args>, mods = "<mods>" }, _G.packer_plugins)]])
|
||||||
pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file TSEnable lua require("packer.load")({'nvim-treesitter'}, { cmd = "TSEnable", l1 = <line1>, l2 = <line2>, bang = <q-bang>, args = <q-args>, mods = "<mods>" }, _G.packer_plugins)]])
|
pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file TSEnable lua require("packer.load")({'nvim-treesitter'}, { cmd = "TSEnable", l1 = <line1>, l2 = <line2>, bang = <q-bang>, args = <q-args>, mods = "<mods>" }, _G.packer_plugins)]])
|
||||||
pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file TSDisable lua require("packer.load")({'nvim-treesitter'}, { cmd = "TSDisable", l1 = <line1>, l2 = <line2>, bang = <q-bang>, args = <q-args>, mods = "<mods>" }, _G.packer_plugins)]])
|
pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file TSDisable lua require("packer.load")({'nvim-treesitter'}, { cmd = "TSDisable", l1 = <line1>, l2 = <line2>, bang = <q-bang>, args = <q-args>, mods = "<mods>" }, _G.packer_plugins)]])
|
||||||
pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file TSModuleInfo lua require("packer.load")({'nvim-treesitter'}, { cmd = "TSModuleInfo", l1 = <line1>, l2 = <line2>, bang = <q-bang>, args = <q-args>, mods = "<mods>" }, _G.packer_plugins)]])
|
pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file TSModuleInfo lua require("packer.load")({'nvim-treesitter'}, { cmd = "TSModuleInfo", l1 = <line1>, l2 = <line2>, bang = <q-bang>, args = <q-args>, mods = "<mods>" }, _G.packer_plugins)]])
|
||||||
pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file Telescope lua require("packer.load")({'telescope.nvim'}, { cmd = "Telescope", l1 = <line1>, l2 = <line2>, bang = <q-bang>, args = <q-args>, mods = "<mods>" }, _G.packer_plugins)]])
|
|
||||||
pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file NvimTreeToggle lua require("packer.load")({'nvim-tree.lua'}, { cmd = "NvimTreeToggle", l1 = <line1>, l2 = <line2>, bang = <q-bang>, args = <q-args>, mods = "<mods>" }, _G.packer_plugins)]])
|
pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file NvimTreeToggle lua require("packer.load")({'nvim-tree.lua'}, { cmd = "NvimTreeToggle", l1 = <line1>, l2 = <line2>, bang = <q-bang>, args = <q-args>, mods = "<mods>" }, _G.packer_plugins)]])
|
||||||
pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file NvimTreeFocus lua require("packer.load")({'nvim-tree.lua'}, { cmd = "NvimTreeFocus", l1 = <line1>, l2 = <line2>, bang = <q-bang>, args = <q-args>, mods = "<mods>" }, _G.packer_plugins)]])
|
pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file NvimTreeFocus lua require("packer.load")({'nvim-tree.lua'}, { cmd = "NvimTreeFocus", l1 = <line1>, l2 = <line2>, bang = <q-bang>, args = <q-args>, mods = "<mods>" }, _G.packer_plugins)]])
|
||||||
pcall(vim.cmd, [[au CmdUndefined lua require('telescope').extensions.projects.projects()<CR> ++once lua require"packer.load"({'project.nvim'}, {}, _G.packer_plugins)]])
|
pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file Telescope lua require("packer.load")({'telescope.nvim', 'project.nvim'}, { cmd = "Telescope", l1 = <line1>, l2 = <line2>, bang = <q-bang>, args = <q-args>, mods = "<mods>" }, _G.packer_plugins)]])
|
||||||
pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file TSInstall lua require("packer.load")({'nvim-treesitter'}, { cmd = "TSInstall", l1 = <line1>, l2 = <line2>, bang = <q-bang>, args = <q-args>, mods = "<mods>" }, _G.packer_plugins)]])
|
pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file TSInstall lua require("packer.load")({'nvim-treesitter'}, { cmd = "TSInstall", l1 = <line1>, l2 = <line2>, bang = <q-bang>, args = <q-args>, mods = "<mods>" }, _G.packer_plugins)]])
|
||||||
pcall(vim.cmd, [[command -nargs=* -range -bang -complete=file TSBufEnable lua require("packer.load")({'nvim-treesitter'}, { cmd = "TSBufEnable", l1 = <line1>, l2 = <line2>, bang = <q-bang>, args = <q-args>, mods = "<mods>" }, _G.packer_plugins)]])
|
|
||||||
time([[Defining lazy-load commands]], false)
|
time([[Defining lazy-load commands]], false)
|
||||||
|
|
||||||
-- Keymap lazy-loads
|
|
||||||
time([[Defining lazy-load keymaps]], true)
|
|
||||||
vim.cmd [[noremap <silent> gb <cmd>lua require("packer.load")({'Comment.nvim'}, { keys = "gb", prefix = "" }, _G.packer_plugins)<cr>]]
|
|
||||||
vim.cmd [[noremap <silent> gc <cmd>lua require("packer.load")({'Comment.nvim'}, { keys = "gc", prefix = "" }, _G.packer_plugins)<cr>]]
|
|
||||||
time([[Defining lazy-load keymaps]], false)
|
|
||||||
|
|
||||||
vim.cmd [[augroup packer_load_aucmds]]
|
vim.cmd [[augroup packer_load_aucmds]]
|
||||||
vim.cmd [[au!]]
|
vim.cmd [[au!]]
|
||||||
-- Filetype lazy-loads
|
-- Filetype lazy-loads
|
||||||
time([[Defining lazy-load filetype autocommands]], true)
|
time([[Defining lazy-load filetype autocommands]], true)
|
||||||
vim.cmd [[au FileType kitty ++once lua require("packer.load")({'vim-kitty'}, { ft = "kitty" }, _G.packer_plugins)]]
|
|
||||||
vim.cmd [[au FileType alpha ++once lua require("packer.load")({'project.nvim', 'nvim-tree.lua'}, { ft = "alpha" }, _G.packer_plugins)]]
|
|
||||||
vim.cmd [[au FileType gitcommit ++once lua require("packer.load")({'gitsigns.nvim'}, { ft = "gitcommit" }, _G.packer_plugins)]]
|
vim.cmd [[au FileType gitcommit ++once lua require("packer.load")({'gitsigns.nvim'}, { ft = "gitcommit" }, _G.packer_plugins)]]
|
||||||
|
vim.cmd [[au FileType kitty ++once lua require("packer.load")({'vim-kitty'}, { ft = "kitty" }, _G.packer_plugins)]]
|
||||||
|
vim.cmd [[au FileType alpha ++once lua require("packer.load")({'nvim-tree.lua'}, { ft = "alpha" }, _G.packer_plugins)]]
|
||||||
time([[Defining lazy-load filetype autocommands]], false)
|
time([[Defining lazy-load filetype autocommands]], false)
|
||||||
|
-- Event lazy-loads
|
||||||
|
time([[Defining lazy-load event autocommands]], true)
|
||||||
|
vim.cmd [[au InsertEnter * ++once lua require("packer.load")({'friendly-snippets'}, { event = "InsertEnter *" }, _G.packer_plugins)]]
|
||||||
|
time([[Defining lazy-load event autocommands]], false)
|
||||||
vim.cmd("augroup END")
|
vim.cmd("augroup END")
|
||||||
vim.cmd [[augroup filetypedetect]]
|
vim.cmd [[augroup filetypedetect]]
|
||||||
time([[Sourcing ftdetect script at: /home/luca/.local/share/nvim/site/pack/packer/opt/vim-kitty/ftdetect/kitty.vim]], true)
|
time([[Sourcing ftdetect script at: /home/luca/.local/share/nvim/site/pack/packer/opt/vim-kitty/ftdetect/kitty.vim]], true)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue