Backup
This commit is contained in:
parent
7c61e64fa8
commit
01ee066c62
8
.lua-format
Normal file
8
.lua-format
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
indent_width: 2
|
||||||
|
column_limit: 100
|
||||||
|
keep_simple_function_one_line: false
|
||||||
|
spaces_inside_table_braces: true
|
||||||
|
chop_down_table: true
|
||||||
|
# chop_down_parameter: true
|
||||||
|
# break_after_functioncall_lp: true
|
||||||
|
# break_before_functioncall_rp: true
|
|
@ -1,11 +1,9 @@
|
||||||
local A = require("my.plugins.arpeggio")
|
-- Use _<leader>lg_ to fetchgit stuff
|
||||||
|
vim.keymap.set("n", "<leader>lg", function()
|
||||||
print("Initializing nix keybinds...")
|
require("my.helpers").saveCursor(function()
|
||||||
|
vim.cmd(":%!update-nix-fetchgit")
|
||||||
-- Use _ug_ to fetchgit stuff
|
end)
|
||||||
A.chordSilent("n", "ug",
|
end, { buffer = true, desc = "Update all fetchgit calls" })
|
||||||
":lua require('my.helpers.update-nix-fetchgit').update()<CR>",
|
|
||||||
{ settings = "b" })
|
|
||||||
|
|
||||||
-- Idk why this isn't here by default
|
-- Idk why this isn't here by default
|
||||||
vim.api.nvim_buf_set_option(0, "commentstring", "# %s")
|
vim.api.nvim_buf_set_option(0, "commentstring", "# %s")
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
local arpeggio = require("my.plugins.arpeggio")
|
local arpeggio = require("my.plugins.arpeggio")
|
||||||
local A = require("my.abbreviations")
|
local A = require("my.abbreviations")
|
||||||
|
|
||||||
-- print("Initializing purescript keybinds...")
|
|
||||||
|
|
||||||
-- Use vt to test
|
-- Use vt to test
|
||||||
arpeggio.chordSilent("n", "vt", ":VimuxRunCommand \"clear && spago test\"<CR>",
|
arpeggio.chordSilent("n", "vt", ":VimuxRunCommand \"clear && spago test\"<CR>",
|
||||||
{ settings = "b" })
|
{ settings = "b" })
|
||||||
|
|
|
@ -10,6 +10,26 @@ vim.g.tex_conceal = "abdmg"
|
||||||
vim.g.vimtex_imaps_enabled = 0
|
vim.g.vimtex_imaps_enabled = 0
|
||||||
-- vim.g.vimtex_syntax_conceal = 1
|
-- vim.g.vimtex_syntax_conceal = 1
|
||||||
|
|
||||||
|
vim.keymap.set("n", "<leader>lg", function()
|
||||||
|
if not pcall(function()
|
||||||
|
local a = tonumber(vim.fn.input("A: "))
|
||||||
|
local b = tonumber(vim.fn.input("B: "))
|
||||||
|
|
||||||
|
local g, x, y = require("my.helpers.math.mod").gcd(a, b)
|
||||||
|
|
||||||
|
vim.fn.input("Result: " .. g .. " " .. x .. " " .. y)
|
||||||
|
end) then vim.fn.input("No results exist") end
|
||||||
|
end, { buffer = true, desc = "Gcd calculator" })
|
||||||
|
|
||||||
|
vim.keymap.set("n", "<leader>li", function()
|
||||||
|
if not pcall(function()
|
||||||
|
local class = tonumber(vim.fn.input("Mod class: "))
|
||||||
|
local num = tonumber(vim.fn.input("Number: "))
|
||||||
|
|
||||||
|
vim.fn.input("Result: " .. require("my.helpers.math.mod").modinverse(num, class))
|
||||||
|
end) then vim.fn.input("No results exist") end
|
||||||
|
end, { buffer = true, desc = "Mod inverse calculator" })
|
||||||
|
|
||||||
local abbreviations = {
|
local abbreviations = {
|
||||||
-- Greek chars
|
-- Greek chars
|
||||||
{ "eps", "\\epsilon" },
|
{ "eps", "\\epsilon" },
|
||||||
|
@ -22,18 +42,14 @@ local abbreviations = {
|
||||||
{ "theta", "\\theta" },
|
{ "theta", "\\theta" },
|
||||||
{ "gamma", "\\gamma" },
|
{ "gamma", "\\gamma" },
|
||||||
{ "lam", "\\lambda" },
|
{ "lam", "\\lambda" },
|
||||||
{ "nuls", "\\varnothing" },
|
{ "nuls", "\\varnothing" }, -- Other fancy symvols
|
||||||
|
|
||||||
-- Other fancy symvols
|
|
||||||
{ "ints", "\\mathbb{Z}" },
|
{ "ints", "\\mathbb{Z}" },
|
||||||
{ "nats", "\\mathbb{N}" },
|
{ "nats", "\\mathbb{N}" },
|
||||||
{ "rats", "\\mathbb{Q}" },
|
{ "rats", "\\mathbb{Q}" },
|
||||||
{ "rrea", "\\mathbb{R}" },
|
{ "rrea", "\\mathbb{R}" },
|
||||||
{ "ppri", "\\mathbb{P}" },
|
{ "ppri", "\\mathbb{P}" },
|
||||||
{ "ffie", "\\mathbb{F}" },
|
{ "ffie", "\\mathbb{F}" },
|
||||||
{ "ccom", "\\mathbb{C}" },
|
{ "ccom", "\\mathbb{C}" }, -- Exponents
|
||||||
|
|
||||||
-- Exponents
|
|
||||||
{ "ei", "^{-1}" },
|
{ "ei", "^{-1}" },
|
||||||
{ "e0", "^{0}" },
|
{ "e0", "^{0}" },
|
||||||
{ "e1", "^{1}" },
|
{ "e1", "^{1}" },
|
||||||
|
@ -45,17 +61,14 @@ local abbreviations = {
|
||||||
{ "ett", "^{t}" },
|
{ "ett", "^{t}" },
|
||||||
{ "tmat", "^{T}" }, -- Tranpose of a matrix
|
{ "tmat", "^{T}" }, -- Tranpose of a matrix
|
||||||
{ "cmat", "^{*}" }, -- Conjugate of a matrix
|
{ "cmat", "^{*}" }, -- Conjugate of a matrix
|
||||||
{ "etp", "^{+}" },
|
{"ortco", "^{\\bot}"}, -- Orthogonal complement
|
||||||
|
{ "etp", "^{+}" }, -- Subscripts
|
||||||
-- Subscripts
|
|
||||||
{ "s0", "_{0}" },
|
{ "s0", "_{0}" },
|
||||||
{ "s1", "_{1}" },
|
{ "s1", "_{1}" },
|
||||||
{ "s2", "_{2}" },
|
{ "s2", "_{2}" },
|
||||||
{ "s3", "_{3}" },
|
{ "s3", "_{3}" },
|
||||||
{ "s4", "_{4}" },
|
{ "s4", "_{4}" },
|
||||||
{ "sn", "_{n}" },
|
{ "sn", "_{n}" }, -- Function calls
|
||||||
|
|
||||||
-- Function calls
|
|
||||||
{ "fx", "f(x)" },
|
{ "fx", "f(x)" },
|
||||||
{ "gx", "g(x)" },
|
{ "gx", "g(x)" },
|
||||||
{ "hx", "h(x)" },
|
{ "hx", "h(x)" },
|
||||||
|
@ -66,9 +79,7 @@ local abbreviations = {
|
||||||
{ "hoa", "h(a)" },
|
{ "hoa", "h(a)" },
|
||||||
{ "dfx", "f'(x)" },
|
{ "dfx", "f'(x)" },
|
||||||
{ "dgx", "g'(x)" },
|
{ "dgx", "g'(x)" },
|
||||||
{ "dhx", "h'(x)" },
|
{ "dhx", "h'(x)" }, -- Basic commands
|
||||||
|
|
||||||
-- Basic commands
|
|
||||||
{ "mangle", "\\measuredangle" },
|
{ "mangle", "\\measuredangle" },
|
||||||
{ "aangle", "\\angle" },
|
{ "aangle", "\\angle" },
|
||||||
{ "creq", "\\\\&=" },
|
{ "creq", "\\\\&=" },
|
||||||
|
@ -110,20 +121,24 @@ local abbreviations = {
|
||||||
{ "ndiv", "\\not\\|\\:" },
|
{ "ndiv", "\\not\\|\\:" },
|
||||||
|
|
||||||
-- words
|
-- words
|
||||||
{ "rref", "reduced row echalon form" },
|
{ "rref", "reduced row echalon form" }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-- Todo: convert exponents and subscripts
|
||||||
|
-- to use this more concise notation.
|
||||||
local abolishAbbreviations = {
|
local abolishAbbreviations = {
|
||||||
{ "eg{va,ve,p}{,s}", "eigen{value,vector,pair}{}" },
|
{ "eg{va,ve,p}{,s}", "eigen{value,vector,pair}{}" },
|
||||||
{ "ib{p,s}", "integration by {parts,substitution}" },
|
{ "ib{p,s}", "integration by {parts,substitution}" },
|
||||||
{ "mx{,s}", "matri{x,ces}" },
|
{ "mx{,s}", "matri{x,ces}" },
|
||||||
{ "thrf", "therefore" }
|
{ "thrf", "therefore" },
|
||||||
|
{ "dete{,s}", "determinant{}" },
|
||||||
|
{ "bcla", "by contradiction let's assume" },
|
||||||
|
{ "ort{n,g}", "orto{normal,gonal}" },
|
||||||
|
{ "l{in,de}", "linearly {independent,dependent}" }
|
||||||
}
|
}
|
||||||
|
|
||||||
A.manyLocalAbbr(abbreviations)
|
A.manyLocalAbbr(abbreviations)
|
||||||
AB.abolishMany(abolishAbbreviations)
|
AB.abolishMany(abolishAbbreviations)
|
||||||
|
|
||||||
vim.keymap.set("n", "<leader>lc", "<cmd>VimtexCompile<cr>", {
|
vim.keymap.set("n", "<leader>lc", "<cmd>VimtexCompile<cr>",
|
||||||
desc = "Compile current buffer using vimtex",
|
{ desc = "Compile current buffer using vimtex", buffer = true })
|
||||||
buffer = true
|
|
||||||
})
|
|
||||||
|
|
15
dotfiles/neovim/lua/my/helpers/math/mod.lua
Normal file
15
dotfiles/neovim/lua/my/helpers/math/mod.lua
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
local M = {}
|
||||||
|
|
||||||
|
function M.modinverse(b, m)
|
||||||
|
local g, x, _ = M.gcd(b, m)
|
||||||
|
if g ~= 1 then return nil end
|
||||||
|
return x % m
|
||||||
|
end
|
||||||
|
|
||||||
|
function M.gcd(a, b)
|
||||||
|
if a == 0 then return b, 0, 1 end
|
||||||
|
local g, x1, y1 = M.gcd(b % a, a)
|
||||||
|
return g, y1 - (math.floor(b / a)) * x1, x1
|
||||||
|
end
|
||||||
|
|
||||||
|
return M
|
|
@ -35,8 +35,8 @@ function M.setup()
|
||||||
opt.splitright = true -- Put new windows right of current
|
opt.splitright = true -- Put new windows right of current
|
||||||
|
|
||||||
opt.wrap = false -- Disable line wrap (by default)
|
opt.wrap = false -- Disable line wrap (by default)
|
||||||
opt.wildmode = { 'list', 'longest' } -- Command-line completion mode
|
opt.wildmode = {'list', 'longest'} -- Command-line completion mode
|
||||||
opt.completeopt = { "menu", "menuone", "noselect" }
|
opt.completeopt = {"menu", "menuone", "noselect"}
|
||||||
|
|
||||||
-- Set leader
|
-- Set leader
|
||||||
helpers.global("mapleader", " ")
|
helpers.global("mapleader", " ")
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
|
|
||||||
function M.setup()
|
function M.setup()
|
||||||
local paq = require("paq")
|
local paq = require("paq")
|
||||||
local themePackages = require("my.theme").deps
|
local themePackages = require("my.theme").deps
|
||||||
|
@ -62,6 +61,8 @@ function M.setup()
|
||||||
"phaazon/mind.nvim", -- Organize shit as trees
|
"phaazon/mind.nvim", -- Organize shit as trees
|
||||||
"bfredl/nvim-luadev", -- lua repl thingy
|
"bfredl/nvim-luadev", -- lua repl thingy
|
||||||
"akinsho/toggleterm.nvim", -- cool terminal thingy
|
"akinsho/toggleterm.nvim", -- cool terminal thingy
|
||||||
|
"folke/noice.nvim", -- better ui for cmd line and other stuff
|
||||||
|
"rcarriga/nvim-notify", -- better notifiaction ui
|
||||||
|
|
||||||
-- Git stuff
|
-- Git stuff
|
||||||
"ruifm/gitlinker.nvim", -- generate permalinks for code
|
"ruifm/gitlinker.nvim", -- generate permalinks for code
|
||||||
|
|
|
@ -2,25 +2,19 @@ local M = {}
|
||||||
|
|
||||||
function M.setup()
|
function M.setup()
|
||||||
local opts = function(desc)
|
local opts = function(desc)
|
||||||
return {
|
return { desc = desc, silent = true }
|
||||||
desc = desc,
|
|
||||||
silent = true
|
|
||||||
}
|
|
||||||
end
|
end
|
||||||
vim.keymap.set({ "n", "v", "o" }, "qf", "<Plug>(easymotion-bd-f)", opts("Hop to char"))
|
|
||||||
vim.keymap.set({ "n", "v", "o" }, "qj", "<Plug>(easymotion-overwin-f2)", opts("Hop to char pair"))
|
local modes = { "n", "v", "o" }
|
||||||
vim.keymap.set({ "n", "v", "o" }, "qw", ":silent <Plug>(easymotion-bd-w)", opts("Hop to word"))
|
|
||||||
vim.keymap.set({ "n", "v", "o" }, "qL", "silent <Plug>(easymotion-bd-L)", opts("Hop to line (?)"))
|
vim.keymap.set(modes, "qf", "<Plug>(easymotion-bd-f)", opts("Hop to char"))
|
||||||
|
vim.keymap.set(modes, "qj", "<Plug>(easymotion-overwin-f2)", opts("Hop to char pair"))
|
||||||
|
vim.keymap.set(modes, "qw", "<Plug>(easymotion-bd-w)", opts("Hop to word"))
|
||||||
|
vim.keymap.set(modes, "qL", "<Plug>(easymotion-bd-L)", opts("Hop to line (?)"))
|
||||||
|
|
||||||
local status, wk = pcall(require, "which-key")
|
local status, wk = pcall(require, "which-key")
|
||||||
|
|
||||||
if status then
|
if status then wk.register({ q = { name = "Easymotion" } }, { mode = "o" }) end
|
||||||
wk.register({
|
|
||||||
q = {
|
|
||||||
name = "Easymotion"
|
|
||||||
}
|
|
||||||
})
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|
|
@ -8,8 +8,6 @@ function M.setup()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
print("Initialized firenvim")
|
|
||||||
end
|
end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|
|
@ -23,8 +23,8 @@ function M.setup()
|
||||||
|
|
||||||
for key, value in pairs(idrisChords) do
|
for key, value in pairs(idrisChords) do
|
||||||
arpeggio.chord("n", "i" .. key,
|
arpeggio.chord("n", "i" .. key,
|
||||||
":lua require('idris2.code_action')." ..
|
":lua require('idris2.code_action')." .. value .. "()<CR>",
|
||||||
value .. "()<CR>", { settings = "b" })
|
{ settings = "b" })
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
},
|
},
|
||||||
|
|
|
@ -21,6 +21,7 @@ function M.setup()
|
||||||
require("toggleterm").setup()
|
require("toggleterm").setup()
|
||||||
|
|
||||||
require("my.plugins.neogit").setup()
|
require("my.plugins.neogit").setup()
|
||||||
|
require("my.plugins.noice").setup()
|
||||||
end)
|
end)
|
||||||
|
|
||||||
require("my.plugins.dashboard").setup()
|
require("my.plugins.dashboard").setup()
|
||||||
|
@ -31,6 +32,7 @@ function M.setup()
|
||||||
require("my.plugins.null-ls").setup()
|
require("my.plugins.null-ls").setup()
|
||||||
require("my.plugins.vimtex").setup()
|
require("my.plugins.vimtex").setup()
|
||||||
require("my.plugins.lean").setup()
|
require("my.plugins.lean").setup()
|
||||||
|
require("my.plugins.notify").setup()
|
||||||
end)
|
end)
|
||||||
|
|
||||||
if env.firevim.active() then
|
if env.firevim.active() then
|
||||||
|
@ -40,7 +42,6 @@ function M.setup()
|
||||||
require("my.plugins.paperplanes").setup()
|
require("my.plugins.paperplanes").setup()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
require("my.plugins.hydra").setup()
|
require("my.plugins.hydra").setup()
|
||||||
require("my.plugins.clipboard-image").setup()
|
require("my.plugins.clipboard-image").setup()
|
||||||
require("my.plugins.mind").setup()
|
require("my.plugins.mind").setup()
|
||||||
|
|
|
@ -4,10 +4,7 @@ function M.on_attach(client, bufnr)
|
||||||
-- Enable completion triggered by <c-x><c-o>
|
-- Enable completion triggered by <c-x><c-o>
|
||||||
vim.api.nvim_buf_set_option(bufnr, 'omnifunc', 'v:lua.vim.lsp.omnifunc')
|
vim.api.nvim_buf_set_option(bufnr, 'omnifunc', 'v:lua.vim.lsp.omnifunc')
|
||||||
|
|
||||||
|
|
||||||
if client.server_capabilities.documentFormattingProvider then
|
if client.server_capabilities.documentFormattingProvider then
|
||||||
print("Initializing formatter...")
|
|
||||||
|
|
||||||
vim.api.nvim_create_autocmd("BufWritePre", {
|
vim.api.nvim_create_autocmd("BufWritePre", {
|
||||||
group = vim.api.nvim_create_augroup("LspFormatting", {}),
|
group = vim.api.nvim_create_augroup("LspFormatting", {}),
|
||||||
buffer = bufnr,
|
buffer = bufnr,
|
||||||
|
@ -17,8 +14,6 @@ function M.on_attach(client, bufnr)
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
print("Setting up keybinds...")
|
|
||||||
|
|
||||||
local opts = function(desc)
|
local opts = function(desc)
|
||||||
return { noremap = true, silent = true, desc = desc }
|
return { noremap = true, silent = true, desc = desc }
|
||||||
end
|
end
|
||||||
|
@ -38,20 +33,17 @@ function M.on_attach(client, bufnr)
|
||||||
vim.keymap.set("n", "<leader>rn", vim.lsp.buf.rename, opts("Rename"))
|
vim.keymap.set("n", "<leader>rn", vim.lsp.buf.rename, opts("Rename"))
|
||||||
vim.keymap.set("n", "<leader>c", vim.lsp.buf.code_action, opts("Code actions"))
|
vim.keymap.set("n", "<leader>c", vim.lsp.buf.code_action, opts("Code actions"))
|
||||||
vim.keymap.set("n", "<leader>f", vim.lsp.buf.format, opts("Format"))
|
vim.keymap.set("n", "<leader>f", vim.lsp.buf.format, opts("Format"))
|
||||||
|
|
||||||
print("Initialized language server!")
|
|
||||||
end
|
|
||||||
|
|
||||||
local function on_attach_typescript(client, bufnr)
|
|
||||||
-- We handle formatting using null-ls and prettierd
|
|
||||||
client.server_capabilities.documentFormattingProvider = false
|
|
||||||
|
|
||||||
M.on_attach(client, bufnr)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
-- General server config
|
-- General server config
|
||||||
local servers = {
|
local servers = {
|
||||||
tsserver = { on_attach = on_attach_typescript },
|
tsserver = {
|
||||||
|
on_attach = function(client, bufnr)
|
||||||
|
-- We handle formatting using null-ls and prettierd
|
||||||
|
client.server_capabilities.documentFormattingProvider = false
|
||||||
|
M.on_attach(client, bufnr)
|
||||||
|
end
|
||||||
|
},
|
||||||
dhall_lsp_server = {},
|
dhall_lsp_server = {},
|
||||||
sumneko_lua = {
|
sumneko_lua = {
|
||||||
settings = {
|
settings = {
|
||||||
|
@ -79,9 +71,7 @@ local servers = {
|
||||||
purescriptls = {
|
purescriptls = {
|
||||||
settings = {
|
settings = {
|
||||||
purescript = {
|
purescript = {
|
||||||
censorWarnings = {
|
censorWarnings = { "UnusedName", "ShadowedName", "UserDefinedWarning" },
|
||||||
"UnusedName", "ShadowedName", "UserDefinedWarning"
|
|
||||||
},
|
|
||||||
formatter = "purs-tidy"
|
formatter = "purs-tidy"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -112,9 +102,7 @@ local servers = {
|
||||||
}
|
}
|
||||||
|
|
||||||
function M.setup()
|
function M.setup()
|
||||||
local capabilities = require('cmp_nvim_lsp').update_capabilities(vim.lsp
|
local capabilities = require('cmp_nvim_lsp').default_capabilities()
|
||||||
.protocol
|
|
||||||
.make_client_capabilities())
|
|
||||||
|
|
||||||
-- Setup basic language servers
|
-- Setup basic language servers
|
||||||
for lsp, details in pairs(servers) do
|
for lsp, details in pairs(servers) do
|
||||||
|
|
34
dotfiles/neovim/lua/my/plugins/noice.lua
Normal file
34
dotfiles/neovim/lua/my/plugins/noice.lua
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
local H = require("my.helpers")
|
||||||
|
local M = {}
|
||||||
|
|
||||||
|
local function skip_containing(string, opts)
|
||||||
|
local defaultOptions = { event = "msg_show", kind = "", find = string }
|
||||||
|
local filter = H.mergeTables(defaultOptions, opts or {})
|
||||||
|
return { filter = filter, opts = { skip = true } }
|
||||||
|
end
|
||||||
|
|
||||||
|
function M.setup()
|
||||||
|
-- s - search hit bottom messages
|
||||||
|
-- c - no pattern found and whatnot
|
||||||
|
vim.opt.shortmess:append("scC")
|
||||||
|
-- vim.opt.shortmess = "sc"
|
||||||
|
|
||||||
|
require("noice").setup({
|
||||||
|
cmdline = {
|
||||||
|
view = "cmdline",
|
||||||
|
format = {
|
||||||
|
search_down = { kind = "search", pattern = "^/", icon = "🔎", lang = "regex" },
|
||||||
|
search_up = { kind = "search", pattern = "^%?", icon = "🔎", lang = "regex" }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
routes = {
|
||||||
|
-- Filter out "Written ..." messages
|
||||||
|
skip_containing("written"),
|
||||||
|
skip_containing("search hit", { event = "wmsg" }),
|
||||||
|
skip_containing("pattern not found", { event = "msg_show" })
|
||||||
|
},
|
||||||
|
lsp = { progres = { enabled = false } }
|
||||||
|
})
|
||||||
|
end
|
||||||
|
|
||||||
|
return M
|
7
dotfiles/neovim/lua/my/plugins/notify.lua
Normal file
7
dotfiles/neovim/lua/my/plugins/notify.lua
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
local M = {}
|
||||||
|
|
||||||
|
function M.setup()
|
||||||
|
vim.notify = require("notify")
|
||||||
|
end
|
||||||
|
|
||||||
|
return M
|
|
@ -9,12 +9,19 @@ function M.setup()
|
||||||
-- null_ls.builtins.formatting.prettierd.with({extra_filetypes = {}}), -- format ts files
|
-- null_ls.builtins.formatting.prettierd.with({extra_filetypes = {}}), -- format ts files
|
||||||
|
|
||||||
null_ls.builtins.formatting.prettier.with({ extra_filetypes = {} }), -- format ts files
|
null_ls.builtins.formatting.prettier.with({ extra_filetypes = {} }), -- format ts files
|
||||||
-- null_ls.builtins.formatting.lua_format -- format lua code
|
null_ls.builtins.formatting.lua_format.with({
|
||||||
|
-- extra_args = function(params)
|
||||||
|
-- return params.options and params.options.tabSize and
|
||||||
|
-- { "--indent-width=" .. params.options.tabSize }
|
||||||
|
-- end
|
||||||
|
}) -- format lua code
|
||||||
}
|
}
|
||||||
|
|
||||||
null_ls.setup({
|
null_ls.setup({
|
||||||
sources = sources, on_attach = lspconfig.on_attach
|
sources = sources,
|
||||||
, debug = true })
|
on_attach = lspconfig.on_attach,
|
||||||
|
debug = true
|
||||||
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|
|
@ -4,14 +4,12 @@ local M = {}
|
||||||
|
|
||||||
function M.setup()
|
function M.setup()
|
||||||
wk.setup({
|
wk.setup({
|
||||||
triggers = { "<leader>", "d", "y", "q", "z", "g", "c" }
|
triggers = { "<leader>", "d", "y", "q", "z", "g", "c" },
|
||||||
|
show_help = false,
|
||||||
|
show_keys = false
|
||||||
})
|
})
|
||||||
|
|
||||||
wk.register({
|
wk.register({ ["<leader>l"] = { name = "Local commands" } })
|
||||||
["<leader>l"] = {
|
|
||||||
name = "Local commands"
|
|
||||||
}
|
|
||||||
})
|
|
||||||
end
|
end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|
12
flake.lock
12
flake.lock
|
@ -529,11 +529,11 @@
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"dir": "contrib",
|
"dir": "contrib",
|
||||||
"lastModified": 1665548414,
|
"lastModified": 1667803793,
|
||||||
"narHash": "sha256-MZTZLz4DTGnehY6JCbJzx9EtvNuOPg/dOMvMKawaFBY=",
|
"narHash": "sha256-jKb4fbi8YcHoKpQB0HAO99CtcP4IFSRV07OT6kNFDGs=",
|
||||||
"owner": "neovim",
|
"owner": "neovim",
|
||||||
"repo": "neovim",
|
"repo": "neovim",
|
||||||
"rev": "f175ca9f7cc29054b1c6fe1fd1076edd78af5684",
|
"rev": "e9c1cb71f8a4d6d7818dcb5f71ac78bee431309a",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -552,11 +552,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1665562768,
|
"lastModified": 1667809192,
|
||||||
"narHash": "sha256-/2wag5vXeieg7YRR431tMaZwB9oAnrQ2Hy7zriRWjd4=",
|
"narHash": "sha256-voNs0rYqJNqwtmm35rq35sQPFtXLgb1phGmBXG3x50o=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "neovim-nightly-overlay",
|
"repo": "neovim-nightly-overlay",
|
||||||
"rev": "e3841a95c1b6bb49ef634ed496c9489c5f48d8cf",
|
"rev": "488d9478d2b9a2481f6b0d04024a95c2135cef8f",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
BIN
img/22-11-06-21-35-08.png
Normal file
BIN
img/22-11-06-21-35-08.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
|
@ -6,14 +6,11 @@ function M.setup()
|
||||||
local catppuccin = require("catppuccin")
|
local catppuccin = require("catppuccin")
|
||||||
vim.g.catppuccin_flavour = os.getenv("CATPPUCCIN_FLAVOUR")
|
vim.g.catppuccin_flavour = os.getenv("CATPPUCCIN_FLAVOUR")
|
||||||
|
|
||||||
catppuccin.setup({
|
catppuccin.setup({ transparent_background = false, integrations = { nvimtree = true } })
|
||||||
transparent_background = false,
|
|
||||||
integrations = { nvimtree = true }
|
|
||||||
})
|
|
||||||
|
|
||||||
print("loaded this theme!")
|
|
||||||
|
|
||||||
vim.cmd [[colorscheme catppuccin]]
|
vim.cmd [[colorscheme catppuccin]]
|
||||||
|
vim.cmd [[highlight NotifyINFOIcon guifg=#d6b20f]]
|
||||||
|
vim.cmd [[highlight NotifyINFOTitle guifg=#d6b20f]]
|
||||||
end
|
end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|
534
startup
534
startup
|
@ -1,534 +0,0 @@
|
||||||
|
|
||||||
|
|
||||||
times in msec
|
|
||||||
clock self+sourced self: sourced script
|
|
||||||
clock elapsed: other lines
|
|
||||||
|
|
||||||
000.010 000.010: --- NVIM STARTING ---
|
|
||||||
000.145 000.135: event init
|
|
||||||
000.255 000.110: early init
|
|
||||||
000.321 000.066: locale set
|
|
||||||
000.357 000.036: init first window
|
|
||||||
000.744 000.387: inits 1
|
|
||||||
000.774 000.030: window checked
|
|
||||||
000.778 000.004: parsing arguments
|
|
||||||
001.306 000.092 000.092: require('vim.shared')
|
|
||||||
001.466 000.078 000.078: require('vim._meta')
|
|
||||||
001.468 000.158 000.080: require('vim._editor')
|
|
||||||
001.469 000.281 000.032: require('vim._init_packages')
|
|
||||||
001.471 000.412: init lua interpreter
|
|
||||||
001.513 000.042: expanding arguments
|
|
||||||
001.603 000.090: inits 2
|
|
||||||
002.005 000.402: init highlight
|
|
||||||
002.006 000.001: waiting for UI
|
|
||||||
003.255 001.249: done waiting for UI
|
|
||||||
003.272 000.017: init screen for UI
|
|
||||||
003.484 000.212: init default mappings
|
|
||||||
003.505 000.020: init default autocommands
|
|
||||||
007.104 000.073 000.073: sourcing /nix/store/lpaqrxrx2wh2prd87b5l87h9naab3zga-neovim-unwrapped-master/share/nvim/runtime/ftplugin.vim
|
|
||||||
007.528 000.049 000.049: sourcing /nix/store/lpaqrxrx2wh2prd87b5l87h9naab3zga-neovim-unwrapped-master/share/nvim/runtime/indent.vim
|
|
||||||
015.023 003.831 003.831: require('my.init')
|
|
||||||
024.138 009.107 009.107: require('impatient')
|
|
||||||
024.355 000.209 000.209: require('my.paq')
|
|
||||||
025.111 000.751 000.751: require('paq')
|
|
||||||
025.191 000.075 000.075: require('my.theme')
|
|
||||||
025.791 000.231 000.231: require('catppuccin')
|
|
||||||
025.963 000.163 000.163: require('catppuccin.config')
|
|
||||||
027.476 000.067 000.067: require('catppuccin.lib.highlighter')
|
|
||||||
027.530 000.049 000.049: require('catppuccin.lib.mapper')
|
|
||||||
027.582 000.047 000.047: require('catppuccin.palettes')
|
|
||||||
027.644 000.055 000.055: require('catppuccin.palettes.latte')
|
|
||||||
028.117 000.067 000.067: require('catppuccin.lib.hsluv')
|
|
||||||
028.123 000.136 000.068: require('catppuccin.utils.colors')
|
|
||||||
028.166 000.040 000.040: require('catppuccin.lib.ui')
|
|
||||||
028.247 000.052 000.052: require('catppuccin.groups.properties')
|
|
||||||
028.345 000.090 000.090: require('catppuccin.groups.syntax')
|
|
||||||
028.562 000.140 000.140: require('catppuccin.groups.editor')
|
|
||||||
028.709 000.107 000.107: require('catppuccin.groups.integrations.markdown')
|
|
||||||
028.944 000.128 000.128: require('catppuccin.groups.integrations.gitsigns')
|
|
||||||
029.110 000.101 000.101: require('catppuccin.groups.integrations.telescope')
|
|
||||||
029.185 000.061 000.061: require('catppuccin.groups.integrations.cmp')
|
|
||||||
029.312 000.075 000.075: require('catppuccin.groups.integrations.notify')
|
|
||||||
029.496 000.115 000.115: require('catppuccin.groups.integrations.treesitter')
|
|
||||||
029.895 000.271 000.271: require('vim.treesitter.language')
|
|
||||||
029.907 000.345 000.074: require('vim.treesitter.query')
|
|
||||||
029.985 000.075 000.075: require('vim.treesitter.languagetree')
|
|
||||||
030.040 000.540 000.119: require('vim.treesitter')
|
|
||||||
030.114 000.071 000.071: require('vim.treesitter.highlighter')
|
|
||||||
030.205 000.042 000.042: require('catppuccin.groups.integrations.dashboard')
|
|
||||||
030.271 000.041 000.041: require('catppuccin.groups.integrations.nvimtree')
|
|
||||||
030.348 000.041 000.041: require('catppuccin.groups.integrations.indent_blankline')
|
|
||||||
030.431 000.047 000.047: require('catppuccin.groups.integrations.native_lsp')
|
|
||||||
030.578 000.044 000.044: require('catppuccin.groups.terminal')
|
|
||||||
032.235 004.856 002.766: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/catppuccin/colors/catppuccin.lua
|
|
||||||
032.362 000.052 000.052: require('my.helpers')
|
|
||||||
032.366 000.117 000.065: require('my.options')
|
|
||||||
032.477 000.050 000.050: require('my.options.folding')
|
|
||||||
032.693 000.083 000.083: require('my.plugins.arpeggio')
|
|
||||||
032.700 000.211 000.129: require('my.keymaps')
|
|
||||||
032.709 000.006 000.006: require('vim.keymap')
|
|
||||||
033.361 000.226 000.226: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/vim-arpeggio/autoload/arpeggio.vim
|
|
||||||
038.498 000.112 000.112: require('my.snippets')
|
|
||||||
038.994 000.034 000.034: require('luasnip.session')
|
|
||||||
039.060 000.063 000.063: require('luasnip.util.util')
|
|
||||||
039.097 000.035 000.035: require('luasnip.util.types')
|
|
||||||
039.183 000.041 000.041: require('luasnip.util.ext_opts')
|
|
||||||
039.212 000.113 000.072: require('luasnip.nodes.util')
|
|
||||||
039.252 000.038 000.038: require('luasnip.util.events')
|
|
||||||
039.261 000.364 000.080: require('luasnip.nodes.node')
|
|
||||||
039.396 000.035 000.035: require('luasnip.util.extend_decorator')
|
|
||||||
039.403 000.141 000.106: require('luasnip.nodes.insertNode')
|
|
||||||
039.470 000.065 000.065: require('luasnip.nodes.textNode')
|
|
||||||
039.513 000.040 000.040: require('luasnip.util.mark')
|
|
||||||
039.972 000.423 000.423: require('luasnip.util._builtin_vars')
|
|
||||||
040.030 000.052 000.052: require('vim.inspect')
|
|
||||||
040.072 000.557 000.082: require('luasnip.util.environ')
|
|
||||||
040.117 000.043 000.043: require('luasnip.util.pattern_tokenizer')
|
|
||||||
040.152 000.033 000.033: require('luasnip.util.dict')
|
|
||||||
040.197 000.043 000.043: require('luasnip.session.snippet_collection')
|
|
||||||
040.272 001.534 000.248: require('luasnip.nodes.snippet')
|
|
||||||
040.366 000.035 000.035: require('luasnip.loaders._caches')
|
|
||||||
040.427 000.059 000.059: require('luasnip.util.path')
|
|
||||||
040.448 000.173 000.079: require('luasnip.loaders')
|
|
||||||
040.535 000.070 000.070: require('luasnip.nodes.functionNode')
|
|
||||||
040.604 000.066 000.066: require('luasnip.nodes.choiceNode')
|
|
||||||
040.711 000.105 000.105: require('luasnip.nodes.dynamicNode')
|
|
||||||
040.826 000.111 000.111: require('luasnip.nodes.restoreNode')
|
|
||||||
041.045 000.065 000.065: require('luasnip.util.parser.neovim_ast')
|
|
||||||
042.390 000.085 000.085: require('luasnip.util.directed_graph')
|
|
||||||
042.401 001.511 001.361: require('luasnip.util.parser.ast_utils')
|
|
||||||
042.570 000.085 000.085: require('luasnip.util.functions')
|
|
||||||
042.577 000.173 000.089: require('luasnip.util.parser.ast_parser')
|
|
||||||
042.719 000.140 000.140: require('luasnip.util.parser.neovim_parser')
|
|
||||||
042.777 000.054 000.054: require('luasnip.util.str')
|
|
||||||
042.808 001.978 000.098: require('luasnip.util.parser')
|
|
||||||
043.302 000.364 000.364: require('nvim-treesitter.parsers')
|
|
||||||
043.436 000.067 000.067: require('nvim-treesitter.utils')
|
|
||||||
043.443 000.137 000.070: require('nvim-treesitter.ts_utils')
|
|
||||||
043.446 000.568 000.068: require('luasnip.extras.filetype_functions')
|
|
||||||
043.523 000.058 000.058: require('luasnip.extras')
|
|
||||||
043.576 000.050 000.050: require('luasnip.extras.fmt')
|
|
||||||
043.622 000.044 000.044: require('luasnip.extras.expand_conditions')
|
|
||||||
043.705 000.076 000.076: require('luasnip.nodes.absolute_indexer')
|
|
||||||
044.218 001.407 000.611: require('luasnip.config')
|
|
||||||
044.223 005.630 000.185: require('luasnip')
|
|
||||||
044.307 000.081 000.081: require('luasnip.loaders.util')
|
|
||||||
044.393 000.083 000.083: require('luasnip.nodes.snippetProxy')
|
|
||||||
044.401 005.898 000.103: require('luasnip.loaders.from_vscode')
|
|
||||||
045.387 000.079 000.079: require('my.helpers.env')
|
|
||||||
045.398 000.163 000.084: require('my.plugins')
|
|
||||||
045.472 000.071 000.071: require('nvim_comment')
|
|
||||||
045.880 000.257 000.257: require('fidget.log')
|
|
||||||
045.896 000.365 000.108: require('fidget')
|
|
||||||
046.093 000.112 000.112: require('fidget.spinners')
|
|
||||||
046.918 000.175 000.175: require('vim.lsp.log')
|
|
||||||
047.591 000.008 000.008: require('vim.F')
|
|
||||||
047.596 000.675 000.667: require('vim.lsp.protocol')
|
|
||||||
048.618 000.751 000.751: require('vim.lsp._snippet')
|
|
||||||
048.780 000.159 000.159: require('vim.highlight')
|
|
||||||
048.880 001.281 000.371: require('vim.lsp.util')
|
|
||||||
048.929 002.646 000.515: require('vim.lsp.handlers')
|
|
||||||
049.287 000.356 000.356: require('vim.lsp.rpc')
|
|
||||||
049.513 000.223 000.223: require('vim.lsp.sync')
|
|
||||||
049.703 000.186 000.186: require('vim.lsp.buf')
|
|
||||||
049.765 000.058 000.058: require('vim.lsp.diagnostic')
|
|
||||||
049.813 000.045 000.045: require('vim.lsp.codelens')
|
|
||||||
049.887 003.789 000.274: require('vim.lsp')
|
|
||||||
050.013 000.030 000.030: require('vim.ui')
|
|
||||||
050.018 000.065 000.034: require('dressing.patch')
|
|
||||||
050.020 000.104 000.039: require('dressing')
|
|
||||||
050.269 000.248 000.248: require('dressing.config')
|
|
||||||
050.430 000.038 000.038: require('lib.log')
|
|
||||||
050.488 000.055 000.055: require('deps.msgpack')
|
|
||||||
050.769 000.279 000.279: require('deps.serpent')
|
|
||||||
050.807 000.034 000.034: require('presence.file_explorers')
|
|
||||||
050.910 000.101 000.101: require('presence.file_assets')
|
|
||||||
050.941 000.028 000.028: require('presence.plugin_managers')
|
|
||||||
051.032 000.029 000.029: require('deps.struct')
|
|
||||||
051.036 000.071 000.042: require('presence.discord')
|
|
||||||
051.051 000.747 000.140: require('presence')
|
|
||||||
051.889 000.021 000.021: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/presence.nvim/autoload/presence.vim
|
|
||||||
053.534 000.116 000.116: require('my.plugins.nvim-tree')
|
|
||||||
054.661 000.042 000.042: require('nvim-tree.iterators.node-iterator')
|
|
||||||
054.735 000.752 000.711: require('nvim-tree.utils')
|
|
||||||
054.748 000.809 000.057: require('nvim-tree.events')
|
|
||||||
054.917 000.058 000.058: require('nvim-tree.log')
|
|
||||||
055.058 000.139 000.139: require('nvim-tree.git.utils')
|
|
||||||
055.116 000.055 000.055: require('nvim-tree.git.runner')
|
|
||||||
055.163 000.045 000.045: require('nvim-tree.watcher')
|
|
||||||
055.172 000.361 000.065: require('nvim-tree.git')
|
|
||||||
055.214 000.040 000.040: require('nvim-tree.explorer.watch')
|
|
||||||
055.256 000.041 000.041: require('nvim-tree.explorer.common')
|
|
||||||
055.340 000.043 000.043: require('nvim-tree.explorer.node-builders')
|
|
||||||
055.387 000.044 000.044: require('nvim-tree.explorer.sorters')
|
|
||||||
055.429 000.040 000.040: require('nvim-tree.explorer.filters')
|
|
||||||
055.571 000.093 000.093: require('nvim-tree.view')
|
|
||||||
055.576 000.145 000.052: require('nvim-tree.live-filter')
|
|
||||||
055.578 000.320 000.048: require('nvim-tree.explorer.explore')
|
|
||||||
055.625 000.045 000.045: require('nvim-tree.explorer.reload')
|
|
||||||
055.629 000.878 000.071: require('nvim-tree.explorer')
|
|
||||||
055.631 001.730 000.043: require('nvim-tree.core')
|
|
||||||
055.712 000.079 000.079: require('nvim-tree.diagnostics')
|
|
||||||
055.787 000.072 000.072: require('nvim-tree.renderer.components.padding')
|
|
||||||
055.833 000.044 000.044: require('nvim-tree.renderer.components.icons')
|
|
||||||
055.880 000.045 000.045: require('nvim-tree.renderer.components.full-name')
|
|
||||||
055.922 000.040 000.040: require('nvim-tree.renderer.help')
|
|
||||||
055.982 000.058 000.058: require('nvim-tree.renderer.components.git')
|
|
||||||
056.044 000.060 000.060: require('nvim-tree.renderer.builder')
|
|
||||||
056.084 000.039 000.039: require('nvim-tree.marks')
|
|
||||||
056.093 002.309 000.142: require('nvim-tree.renderer')
|
|
||||||
056.133 000.036 000.036: require('nvim-tree.actions.tree-modifiers.collapse-all')
|
|
||||||
056.171 000.036 000.036: require('nvim-tree.actions.root.dir-up')
|
|
||||||
056.215 000.042 000.042: require('nvim-tree.actions.root.change-dir')
|
|
||||||
056.256 000.037 000.037: require('nvim-tree.actions.reloaders.reloaders')
|
|
||||||
056.295 000.038 000.038: require('nvim-tree.actions.finders.find-file')
|
|
||||||
056.298 002.592 000.094: require('nvim-tree.lib')
|
|
||||||
056.349 000.049 000.049: require('nvim-tree.colors')
|
|
||||||
056.419 000.068 000.068: require('nvim-tree.legacy')
|
|
||||||
056.478 000.057 000.057: require('nvim-tree.actions.fs.copy-paste')
|
|
||||||
056.566 000.041 000.041: require('nvim-tree.actions.tree-modifiers.expand-all')
|
|
||||||
056.602 000.035 000.035: require('nvim-tree.actions.tree-modifiers.toggles')
|
|
||||||
056.664 000.056 000.056: require('nvim-tree.actions.fs.create-file')
|
|
||||||
056.738 000.066 000.066: require('nvim-tree.actions.fs.rename-file')
|
|
||||||
056.811 000.070 000.070: require('nvim-tree.actions.fs.trash')
|
|
||||||
056.854 000.041 000.041: require('nvim-tree.actions.fs.remove-file')
|
|
||||||
056.922 000.064 000.064: require('nvim-tree.actions.moves.parent')
|
|
||||||
056.980 000.056 000.056: require('nvim-tree.actions.moves.sibling')
|
|
||||||
057.058 000.075 000.075: require('nvim-tree.actions.moves.item')
|
|
||||||
057.120 000.055 000.055: require('nvim-tree.actions.finders.search-node')
|
|
||||||
057.194 000.071 000.071: require('nvim-tree.actions.node.run-command')
|
|
||||||
057.244 000.047 000.047: require('nvim-tree.actions.node.file-popup')
|
|
||||||
057.334 000.074 000.074: require('nvim-tree.actions.node.system-open')
|
|
||||||
057.417 000.076 000.076: require('nvim-tree.marks.bulk-move')
|
|
||||||
057.421 000.940 000.114: require('nvim-tree.actions.dispatch')
|
|
||||||
057.450 003.910 000.205: require('nvim-tree')
|
|
||||||
059.611 000.105 000.105: require('nvim-tree.actions')
|
|
||||||
059.700 000.082 000.082: require('nvim-tree.actions.node.open-file')
|
|
||||||
061.226 000.045 000.045: require('nvim-tree.marks.navigation')
|
|
||||||
061.231 000.128 000.083: require('nvim-tree.api')
|
|
||||||
061.249 000.232 000.104: require('nvim-tree.keymap')
|
|
||||||
062.131 000.468 000.468: require('nvim-web-devicons')
|
|
||||||
065.384 000.098 000.098: require('my.plugins.lualine')
|
|
||||||
065.529 000.055 000.055: require('lualine_require')
|
|
||||||
066.006 000.617 000.563: require('lualine')
|
|
||||||
073.116 000.082 000.082: require('lualine.utils.mode')
|
|
||||||
073.340 000.057 000.057: require('lualine.extensions.nerdtree')
|
|
||||||
073.824 000.092 000.092: require('my.plugins.vimux')
|
|
||||||
076.430 000.078 000.078: require('my.plugins.dashboard')
|
|
||||||
076.560 000.124 000.124: require('dashboard')
|
|
||||||
076.632 000.068 000.068: require('my.plugins.treesitter')
|
|
||||||
076.918 000.063 000.063: require('nvim-treesitter.tsrange')
|
|
||||||
076.969 000.047 000.047: require('nvim-treesitter.caching')
|
|
||||||
077.002 000.226 000.115: require('nvim-treesitter.query')
|
|
||||||
077.027 000.391 000.165: require('nvim-treesitter.configs')
|
|
||||||
077.241 000.062 000.062: require('nvim-treesitter.info')
|
|
||||||
077.352 000.107 000.107: require('nvim-treesitter.shell_command_selectors')
|
|
||||||
077.388 000.332 000.162: require('nvim-treesitter.install')
|
|
||||||
081.984 000.088 000.088: require('my.plugins.cmp')
|
|
||||||
082.202 000.045 000.045: require('cmp.utils.debug')
|
|
||||||
082.374 000.124 000.124: require('cmp.utils.char')
|
|
||||||
082.383 000.179 000.054: require('cmp.utils.str')
|
|
||||||
082.431 000.046 000.046: require('cmp.utils.pattern')
|
|
||||||
082.618 000.055 000.055: require('cmp.utils.misc')
|
|
||||||
082.659 000.038 000.038: require('cmp.utils.buffer')
|
|
||||||
082.765 000.104 000.104: require('cmp.utils.api')
|
|
||||||
082.771 000.287 000.091: require('cmp.utils.keymap')
|
|
||||||
082.776 000.342 000.055: require('cmp.utils.feedkeys')
|
|
||||||
082.855 000.077 000.077: require('cmp.utils.async')
|
|
||||||
082.982 000.042 000.042: require('cmp.types.cmp')
|
|
||||||
083.109 000.124 000.124: require('cmp.types.lsp')
|
|
||||||
083.159 000.046 000.046: require('cmp.types.vim')
|
|
||||||
083.162 000.258 000.045: require('cmp.types')
|
|
||||||
083.205 000.040 000.040: require('cmp.utils.cache')
|
|
||||||
083.211 000.354 000.056: require('cmp.context')
|
|
||||||
083.385 000.054 000.054: require('cmp.config.mapping')
|
|
||||||
083.524 000.082 000.082: require('cmp.config.compare')
|
|
||||||
083.527 000.138 000.056: require('cmp.config.default')
|
|
||||||
083.546 000.272 000.080: require('cmp.config')
|
|
||||||
083.695 000.073 000.073: require('cmp.matcher')
|
|
||||||
083.710 000.161 000.089: require('cmp.entry')
|
|
||||||
083.718 000.506 000.072: require('cmp.source')
|
|
||||||
083.839 000.033 000.033: require('cmp.utils.event')
|
|
||||||
083.940 000.055 000.055: require('cmp.utils.window')
|
|
||||||
083.943 000.102 000.047: require('cmp.view.docs_view')
|
|
||||||
084.050 000.044 000.044: require('cmp.utils.autocmd')
|
|
||||||
084.061 000.116 000.072: require('cmp.view.custom_entries_view')
|
|
||||||
084.126 000.063 000.063: require('cmp.view.wildmenu_entries_view')
|
|
||||||
084.176 000.048 000.048: require('cmp.view.native_entries_view')
|
|
||||||
084.219 000.041 000.041: require('cmp.view.ghost_text_view')
|
|
||||||
084.229 000.509 000.105: require('cmp.view')
|
|
||||||
084.316 002.244 000.188: require('cmp.core')
|
|
||||||
084.516 000.040 000.040: require('cmp.config.sources')
|
|
||||||
084.575 000.055 000.055: require('cmp.config.window')
|
|
||||||
084.657 002.668 000.328: require('cmp')
|
|
||||||
084.819 000.160 000.160: require('lspkind')
|
|
||||||
086.239 000.120 000.120: require('my.plugins.lspconfig')
|
|
||||||
086.335 000.046 000.046: require('cmp_nvim_lsp.source')
|
|
||||||
086.339 000.095 000.049: require('cmp_nvim_lsp')
|
|
||||||
086.776 000.291 000.291: require('lspconfig.util')
|
|
||||||
086.797 000.387 000.096: require('lspconfig.configs')
|
|
||||||
086.800 000.426 000.039: require('lspconfig')
|
|
||||||
086.862 000.059 000.059: require('lspconfig.server_configurations.kotlin_language_server')
|
|
||||||
087.975 000.091 000.091: require('lspconfig.server_configurations.hls')
|
|
||||||
088.650 000.061 000.061: require('lspconfig.server_configurations.rnix')
|
|
||||||
088.946 000.069 000.069: require('lspconfig.server_configurations.cssls')
|
|
||||||
089.216 000.071 000.071: require('lspconfig.server_configurations.dhall_lsp_server')
|
|
||||||
089.476 000.064 000.064: require('lspconfig.server_configurations.tsserver')
|
|
||||||
089.807 000.097 000.097: require('lspconfig.server_configurations.sumneko_lua')
|
|
||||||
090.100 000.071 000.071: require('lspconfig.server_configurations.purescriptls')
|
|
||||||
090.317 000.066 000.066: require('my.plugins.null-ls')
|
|
||||||
090.713 000.166 000.166: require('null-ls.methods')
|
|
||||||
090.732 000.253 000.087: require('null-ls.utils')
|
|
||||||
091.021 000.281 000.281: require('vim.diagnostic')
|
|
||||||
091.046 000.645 000.111: require('null-ls.config')
|
|
||||||
091.142 000.045 000.045: require('null-ls.helpers.cache')
|
|
||||||
091.216 000.071 000.071: require('null-ls.helpers.diagnostics')
|
|
||||||
091.261 000.042 000.042: require('null-ls.helpers.formatter_factory')
|
|
||||||
091.451 000.068 000.068: require('null-ls.logger')
|
|
||||||
091.513 000.059 000.059: require('null-ls.state')
|
|
||||||
091.519 000.255 000.128: require('null-ls.helpers.generator_factory')
|
|
||||||
091.641 000.069 000.069: require('null-ls.helpers.command_resolver')
|
|
||||||
091.644 000.124 000.055: require('null-ls.helpers.make_builtin')
|
|
||||||
091.741 000.094 000.094: require('null-ls.helpers.range_formatting_args_factory')
|
|
||||||
091.744 000.696 000.064: require('null-ls.helpers')
|
|
||||||
091.869 000.061 000.061: require('null-ls.diagnostics')
|
|
||||||
091.879 000.133 000.072: require('null-ls.sources')
|
|
||||||
091.951 000.068 000.068: require('null-ls.builtins')
|
|
||||||
091.955 001.609 000.067: require('null-ls')
|
|
||||||
092.036 000.078 000.078: require('null-ls.builtins.formatting.prettierd')
|
|
||||||
092.333 000.078 000.078: require('null-ls.client')
|
|
||||||
092.428 000.061 000.061: require('my.plugins.vimtex')
|
|
||||||
092.507 000.065 000.065: require('my.plugins.lean')
|
|
||||||
093.171 000.210 000.210: require('plenary.functional')
|
|
||||||
093.184 000.478 000.268: require('plenary.job')
|
|
||||||
093.482 000.051 000.051: require('plenary.tbl')
|
|
||||||
093.488 000.103 000.052: require('plenary.vararg.rotate')
|
|
||||||
093.490 000.149 000.046: require('plenary.vararg')
|
|
||||||
093.555 000.063 000.063: require('plenary.errors')
|
|
||||||
093.560 000.308 000.095: require('plenary.async.async')
|
|
||||||
093.957 000.085 000.085: require('plenary.async.structs')
|
|
||||||
093.966 000.216 000.131: require('plenary.async.control')
|
|
||||||
093.976 000.374 000.158: require('plenary.async.util')
|
|
||||||
093.981 000.418 000.045: require('plenary.async.tests')
|
|
||||||
093.983 000.797 000.071: require('plenary.async')
|
|
||||||
094.002 001.430 000.155: require('lean._util')
|
|
||||||
094.010 001.500 000.070: require('lean')
|
|
||||||
094.115 000.102 000.102: require('lean.abbreviations')
|
|
||||||
102.166 000.185 000.185: require('lean.widgets')
|
|
||||||
102.304 000.133 000.133: require('lean.infoview.components')
|
|
||||||
102.491 000.082 000.082: require('lean.lsp')
|
|
||||||
102.543 000.050 000.050: require('lean.progress')
|
|
||||||
102.552 000.244 000.113: require('lean.lean3')
|
|
||||||
102.625 000.071 000.071: require('lean.rpc')
|
|
||||||
102.702 000.952 000.319: require('lean.infoview')
|
|
||||||
102.865 000.106 000.106: require('lean.commands')
|
|
||||||
102.968 000.068 000.068: require('lspconfig.server_configurations.lean3ls')
|
|
||||||
103.231 000.073 000.073: require('lspconfig.server_configurations.leanls')
|
|
||||||
103.439 000.046 000.046: require('lean.treesitter')
|
|
||||||
103.515 000.068 000.068: require('lean.progress_bars')
|
|
||||||
103.631 000.083 000.083: require('lean.ft')
|
|
||||||
103.744 000.104 000.104: require('lean.stderr')
|
|
||||||
104.186 000.125 000.125: require('plenary.bit')
|
|
||||||
104.276 000.032 000.032: require('ffi')
|
|
||||||
104.309 000.350 000.193: require('plenary.path')
|
|
||||||
104.319 000.418 000.068: require('gitlinker.git')
|
|
||||||
104.394 000.072 000.072: require('gitlinker.buffer')
|
|
||||||
104.451 000.056 000.056: require('gitlinker.mappings')
|
|
||||||
104.547 000.048 000.048: require('gitlinker.actions')
|
|
||||||
104.550 000.096 000.048: require('gitlinker.opts')
|
|
||||||
104.615 000.063 000.063: require('gitlinker.hosts')
|
|
||||||
104.620 000.774 000.068: require('gitlinker')
|
|
||||||
104.817 000.157 000.157: require('my.plugins.paperplanes')
|
|
||||||
104.939 000.056 000.056: require('paperplanes.get_text')
|
|
||||||
104.946 000.126 000.070: require('paperplanes')
|
|
||||||
105.023 000.070 000.070: require('my.plugins.easymotion')
|
|
||||||
105.227 000.072 000.072: require('my.plugins.autopairs')
|
|
||||||
105.398 000.077 000.077: require('nvim-autopairs._log')
|
|
||||||
105.492 000.091 000.091: require('nvim-autopairs.utils')
|
|
||||||
105.745 000.129 000.129: require('nvim-autopairs.conds')
|
|
||||||
105.758 000.202 000.073: require('nvim-autopairs.rule')
|
|
||||||
105.761 000.267 000.065: require('nvim-autopairs.rules.basic')
|
|
||||||
105.793 000.563 000.128: require('nvim-autopairs')
|
|
||||||
106.377 000.117 000.117: require('my.plugins.telescope')
|
|
||||||
107.588 000.070 000.070: require('telescope._extensions')
|
|
||||||
107.595 000.174 000.104: require('telescope')
|
|
||||||
108.466 000.406 000.406: require('plenary.strings')
|
|
||||||
108.624 000.154 000.154: require('telescope.deprecated')
|
|
||||||
109.334 000.279 000.279: require('plenary.log')
|
|
||||||
109.389 000.521 000.242: require('telescope.log')
|
|
||||||
109.839 000.290 000.290: require('telescope.state')
|
|
||||||
109.876 000.485 000.195: require('telescope.utils')
|
|
||||||
109.904 001.277 000.272: require('telescope.sorters')
|
|
||||||
114.327 006.728 004.891: require('telescope.config')
|
|
||||||
115.805 000.077 000.077: require('telescope.actions.state')
|
|
||||||
115.813 000.167 000.091: require('telescope._extensions.file_browser.utils')
|
|
||||||
116.025 000.045 000.045: require('plenary.window.border')
|
|
||||||
116.062 000.034 000.034: require('plenary.window')
|
|
||||||
116.096 000.032 000.032: require('plenary.popup.utils')
|
|
||||||
116.100 000.170 000.058: require('plenary.popup')
|
|
||||||
116.141 000.039 000.039: require('telescope.pickers.scroller')
|
|
||||||
116.183 000.039 000.039: require('telescope.actions.utils')
|
|
||||||
116.270 000.041 000.041: require('telescope.actions.mt')
|
|
||||||
116.289 000.104 000.063: require('telescope.actions.set')
|
|
||||||
116.374 000.044 000.044: require('telescope.config.resolve')
|
|
||||||
116.377 000.086 000.042: require('telescope.pickers.entry_display')
|
|
||||||
116.412 000.033 000.033: require('telescope.from_entry')
|
|
||||||
116.604 000.788 000.317: require('telescope.actions')
|
|
||||||
116.647 001.088 000.133: require('telescope._extensions.file_browser.actions')
|
|
||||||
116.831 000.095 000.095: require('telescope._extensions.file_browser.make_entry')
|
|
||||||
116.951 000.034 000.034: require('plenary.class')
|
|
||||||
116.966 000.095 000.060: require('telescope._')
|
|
||||||
117.101 000.133 000.133: require('telescope.make_entry')
|
|
||||||
117.104 000.270 000.042: require('telescope.finders.async_oneshot_finder')
|
|
||||||
117.204 000.052 000.052: require('telescope.finders.async_static_finder')
|
|
||||||
117.242 000.036 000.036: require('telescope.finders.async_job_finder')
|
|
||||||
117.247 000.141 000.054: require('telescope.finders')
|
|
||||||
117.347 000.098 000.098: require('plenary.scandir')
|
|
||||||
117.413 000.764 000.159: require('telescope._extensions.file_browser.finders')
|
|
||||||
117.615 000.043 000.043: require('telescope.debounce')
|
|
||||||
117.805 000.188 000.188: require('telescope.mappings')
|
|
||||||
117.854 000.045 000.045: require('telescope.pickers.highlights')
|
|
||||||
117.892 000.036 000.036: require('telescope.pickers.window')
|
|
||||||
117.968 000.037 000.037: require('telescope.algos.linked_list')
|
|
||||||
117.972 000.078 000.041: require('telescope.entry_manager')
|
|
||||||
118.019 000.046 000.046: require('telescope.pickers.multi')
|
|
||||||
118.032 000.560 000.124: require('telescope.pickers')
|
|
||||||
118.035 000.620 000.061: require('telescope._extensions.file_browser.picker')
|
|
||||||
118.083 000.046 000.046: require('telescope._extensions.file_browser.config')
|
|
||||||
118.086 002.584 000.065: require('telescope._extensions.file_browser')
|
|
||||||
118.194 000.044 000.044: require('my.plugins.venn')
|
|
||||||
118.280 000.030 000.030: require('hydra.lib.class')
|
|
||||||
118.376 000.031 000.031: require('hydra.hint.hint')
|
|
||||||
118.410 000.032 000.032: require('hydra.lib.util')
|
|
||||||
118.445 000.032 000.032: require('hydra.hint.vim-options')
|
|
||||||
118.449 000.139 000.044: require('hydra.hint.cmdline')
|
|
||||||
118.526 000.034 000.034: require('hydra.lib.api-wrappers')
|
|
||||||
118.539 000.088 000.054: require('hydra.hint.window')
|
|
||||||
118.572 000.032 000.032: require('hydra.hint.statusline')
|
|
||||||
118.575 000.293 000.034: require('hydra.hint')
|
|
||||||
118.611 000.035 000.035: require('hydra.lib.meta-accessor')
|
|
||||||
118.616 000.419 000.062: require('hydra')
|
|
||||||
119.069 000.062 000.062: require('hydra.layer')
|
|
||||||
119.639 000.046 000.046: require('my.plugins.clipboard-image')
|
|
||||||
119.742 000.042 000.042: require('clipboard-image.config')
|
|
||||||
119.745 000.103 000.061: require('clipboard-image')
|
|
||||||
119.894 000.032 000.032: require('telescope.previewers.previewer')
|
|
||||||
120.052 000.156 000.156: require('telescope.previewers.term_previewer')
|
|
||||||
120.208 000.028 000.028: require('plenary.context_manager')
|
|
||||||
120.268 000.029 000.029: require('nvim-treesitter.statusline')
|
|
||||||
120.306 000.036 000.036: require('nvim-treesitter.query_predicates')
|
|
||||||
120.332 000.121 000.057: require('nvim-treesitter')
|
|
||||||
120.336 000.196 000.046: require('telescope.previewers.utils')
|
|
||||||
121.850 001.512 001.512: require('plenary.filetype')
|
|
||||||
121.948 001.893 000.186: require('telescope.previewers.buffer_previewer')
|
|
||||||
121.953 002.124 000.042: require('telescope.previewers')
|
|
||||||
121.956 002.186 000.062: require('telescope.extensions.unicode')
|
|
||||||
121.959 114.019 052.278: sourcing /home/adrielus/.config/nvim/init.lua
|
|
||||||
121.967 004.321: sourcing vimrc file(s)
|
|
||||||
122.592 000.016 000.016: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/LuaSnip/ftdetect/snippets.vim
|
|
||||||
122.755 000.017 000.017: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/dhall-vim/ftdetect/dhall.vim
|
|
||||||
122.895 000.011 000.011: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/idris2-nvim/ftdetect/idris2.vim
|
|
||||||
122.926 000.009 000.009: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/idris2-nvim/ftdetect/ipkg.vim
|
|
||||||
122.971 000.010 000.010: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/idris2-nvim/ftdetect/lidris2.vim
|
|
||||||
123.048 000.017 000.017: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/kmonad-vim/ftdetect/kbd.vim
|
|
||||||
123.116 000.015 000.015: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/kotlin-vim/ftdetect/kotlin.vim
|
|
||||||
123.381 000.012 000.012: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/purescript-vim/ftdetect/purescript.vim
|
|
||||||
123.544 000.024 000.024: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/vimtex/ftdetect/cls.vim
|
|
||||||
123.588 000.021 000.021: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/vimtex/ftdetect/tex.vim
|
|
||||||
123.627 000.016 000.016: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/vimtex/ftdetect/tikz.vim
|
|
||||||
124.105 000.042 000.042: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/lean.nvim/ftdetect/lean.lua
|
|
||||||
124.506 000.031 000.031: sourcing /home/adrielus/Projects/nixos-config/dotfiles/neovim/ftdetect/hkf.lua
|
|
||||||
124.534 002.093 001.852: sourcing /nix/store/lpaqrxrx2wh2prd87b5l87h9naab3zga-neovim-unwrapped-master/share/nvim/runtime/filetype.lua
|
|
||||||
124.580 000.016 000.016: sourcing /nix/store/lpaqrxrx2wh2prd87b5l87h9naab3zga-neovim-unwrapped-master/share/nvim/runtime/filetype.vim
|
|
||||||
125.232 000.097 000.097: sourcing /nix/store/lpaqrxrx2wh2prd87b5l87h9naab3zga-neovim-unwrapped-master/share/nvim/runtime/syntax/synload.vim
|
|
||||||
125.374 000.617 000.520: sourcing /nix/store/lpaqrxrx2wh2prd87b5l87h9naab3zga-neovim-unwrapped-master/share/nvim/runtime/syntax/syntax.vim
|
|
||||||
127.817 000.219 000.219: sourcing /nix/store/lpaqrxrx2wh2prd87b5l87h9naab3zga-neovim-unwrapped-master/share/nvim/runtime/plugin/gzip.vim
|
|
||||||
127.856 000.011 000.011: sourcing /nix/store/lpaqrxrx2wh2prd87b5l87h9naab3zga-neovim-unwrapped-master/share/nvim/runtime/plugin/health.vim
|
|
||||||
128.644 000.186 000.186: sourcing /nix/store/lpaqrxrx2wh2prd87b5l87h9naab3zga-neovim-unwrapped-master/share/nvim/runtime/pack/dist/opt/matchit/plugin/matchit.vim
|
|
||||||
128.883 001.005 000.819: sourcing /nix/store/lpaqrxrx2wh2prd87b5l87h9naab3zga-neovim-unwrapped-master/share/nvim/runtime/plugin/matchit.vim
|
|
||||||
129.057 000.150 000.150: sourcing /nix/store/lpaqrxrx2wh2prd87b5l87h9naab3zga-neovim-unwrapped-master/share/nvim/runtime/plugin/matchparen.vim
|
|
||||||
129.438 000.356 000.356: sourcing /nix/store/lpaqrxrx2wh2prd87b5l87h9naab3zga-neovim-unwrapped-master/share/nvim/runtime/plugin/netrwPlugin.vim
|
|
||||||
134.275 000.262 000.262: sourcing /nix/store/lpaqrxrx2wh2prd87b5l87h9naab3zga-neovim-unwrapped-master/share/nvim/runtime/autoload/remote/host.vim
|
|
||||||
134.959 000.167 000.167: sourcing /nix/store/lpaqrxrx2wh2prd87b5l87h9naab3zga-neovim-unwrapped-master/share/nvim/runtime/autoload/remote/define.vim
|
|
||||||
135.113 005.425 004.996: sourcing /home/adrielus/.local/share/nvim/rplugin.vim
|
|
||||||
135.131 005.660 000.236: sourcing /nix/store/lpaqrxrx2wh2prd87b5l87h9naab3zga-neovim-unwrapped-master/share/nvim/runtime/plugin/rplugin.vim
|
|
||||||
135.278 000.083 000.083: sourcing /nix/store/lpaqrxrx2wh2prd87b5l87h9naab3zga-neovim-unwrapped-master/share/nvim/runtime/plugin/shada.vim
|
|
||||||
135.379 000.034 000.034: sourcing /nix/store/lpaqrxrx2wh2prd87b5l87h9naab3zga-neovim-unwrapped-master/share/nvim/runtime/plugin/spellfile.vim
|
|
||||||
135.551 000.134 000.134: sourcing /nix/store/lpaqrxrx2wh2prd87b5l87h9naab3zga-neovim-unwrapped-master/share/nvim/runtime/plugin/tarPlugin.vim
|
|
||||||
135.758 000.152 000.152: sourcing /nix/store/lpaqrxrx2wh2prd87b5l87h9naab3zga-neovim-unwrapped-master/share/nvim/runtime/plugin/tohtml.vim
|
|
||||||
135.829 000.021 000.021: sourcing /nix/store/lpaqrxrx2wh2prd87b5l87h9naab3zga-neovim-unwrapped-master/share/nvim/runtime/plugin/tutor.vim
|
|
||||||
136.048 000.185 000.185: sourcing /nix/store/lpaqrxrx2wh2prd87b5l87h9naab3zga-neovim-unwrapped-master/share/nvim/runtime/plugin/zipPlugin.vim
|
|
||||||
136.760 000.128 000.128: sourcing /nix/store/lpaqrxrx2wh2prd87b5l87h9naab3zga-neovim-unwrapped-master/share/nvim/runtime/plugin/man.lua
|
|
||||||
136.827 003.995: loading rtp plugins
|
|
||||||
138.077 000.204 000.204: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/LuaSnip/plugin/luasnip.vim
|
|
||||||
138.269 000.035 000.035: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/catppuccin/plugin/catppuccin.vim
|
|
||||||
138.540 000.083 000.083: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/clipboard-image.nvim/plugin/clipboard-image.vim
|
|
||||||
139.217 000.077 000.077: require('dashboard.session')
|
|
||||||
139.228 000.157 000.080: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/dashboard-nvim/plugin/dashboard.lua
|
|
||||||
139.488 000.042 000.042: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/dressing.nvim/plugin/dressing.lua
|
|
||||||
139.728 000.079 000.079: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/firenvim/plugin/firenvim.vim
|
|
||||||
140.234 000.153 000.153: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/hydra.nvim/plugin/hydra.lua
|
|
||||||
140.980 000.049 000.049: require('cmp.utils.highlight')
|
|
||||||
141.591 000.705 000.656: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/nvim-cmp/plugin/cmp.lua
|
|
||||||
142.059 000.128 000.128: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/nvim-lspconfig/plugin/lspconfig.lua
|
|
||||||
142.886 000.136 000.136: require('nvim-treesitter.highlight')
|
|
||||||
143.106 000.812 000.676: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/nvim-treesitter/plugin/nvim-treesitter.lua
|
|
||||||
143.382 000.075 000.075: require('nvim-treesitter-textobjects')
|
|
||||||
143.520 000.040 000.040: require('nvim-treesitter.textobjects.shared')
|
|
||||||
143.525 000.095 000.054: require('nvim-treesitter.textobjects.select')
|
|
||||||
143.619 000.035 000.035: require('nvim-treesitter.textobjects.attach')
|
|
||||||
143.625 000.080 000.045: require('nvim-treesitter.textobjects.move')
|
|
||||||
143.852 000.041 000.041: require('nvim-treesitter.textobjects.swap')
|
|
||||||
143.940 000.045 000.045: require('nvim-treesitter.textobjects.lsp_interop')
|
|
||||||
143.955 000.669 000.334: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/nvim-treesitter-textobjects/plugin/nvim-treesitter-textobjects.vim
|
|
||||||
144.200 000.043 000.043: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/nvim-web-devicons/plugin/nvim-web-devicons.vim
|
|
||||||
144.424 000.028 000.028: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/nvim_context_vt/plugin/nvim_context_vt.vim
|
|
||||||
144.580 000.014 000.014: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/paperplanes.nvim/plugin/paperplanes.vim
|
|
||||||
144.961 000.039 000.039: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/plenary.nvim/plugin/plenary.vim
|
|
||||||
145.132 000.016 000.016: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/presence.nvim/plugin/presence.vim
|
|
||||||
145.620 000.242 000.242: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/telescope.nvim/plugin/telescope.lua
|
|
||||||
145.974 000.104 000.104: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/venn.nvim/plugin/venn.lua
|
|
||||||
146.450 000.372 000.372: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/vim-arpeggio/plugin/arpeggio.vim
|
|
||||||
152.583 005.970 005.970: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/vim-easymotion/plugin/EasyMotion.vim
|
|
||||||
153.705 000.770 000.770: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/vim-smoothie/plugin/smoothie.vim
|
|
||||||
154.497 000.495 000.495: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/vim-surround/plugin/surround.vim
|
|
||||||
155.112 000.314 000.314: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/vim-tmux-navigator/plugin/tmux_navigator.vim
|
|
||||||
156.886 001.540 001.540: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/vim-wakatime/plugin/wakatime.vim
|
|
||||||
157.194 000.048 000.048: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/vimtex/plugin/vimtex.vim
|
|
||||||
157.881 000.520 000.520: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/vimux/plugin/vimux.vim
|
|
||||||
158.083 000.017 000.017: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/which-key.nvim/plugin/which-key.vim
|
|
||||||
158.555 008.129: loading packages
|
|
||||||
159.392 000.031 000.031: require('cmp_buffer.timer')
|
|
||||||
159.398 000.090 000.059: require('cmp_buffer.buffer')
|
|
||||||
159.402 000.145 000.055: require('cmp_buffer.source')
|
|
||||||
159.404 000.217 000.073: require('cmp_buffer')
|
|
||||||
159.431 000.314 000.097: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/cmp-buffer/after/plugin/cmp_buffer.lua
|
|
||||||
159.739 000.145 000.145: require('cmp_cmdline')
|
|
||||||
159.765 000.241 000.095: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/cmp-cmdline/after/plugin/cmp_cmdline.lua
|
|
||||||
160.033 000.095 000.095: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/cmp-nvim-lsp/after/plugin/cmp_nvim_lsp.lua
|
|
||||||
160.187 000.039 000.039: require('cmp_omni')
|
|
||||||
160.205 000.080 000.041: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/cmp-omni/after/plugin/cmp_omni.lua
|
|
||||||
160.383 000.063 000.063: require('cmp_path')
|
|
||||||
160.399 000.099 000.035: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/cmp-path/after/plugin/cmp_path.lua
|
|
||||||
160.562 000.046 000.046: require('cmp_luasnip')
|
|
||||||
160.600 000.108 000.062: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/cmp_luasnip/after/plugin/cmp_luasnip.lua
|
|
||||||
160.644 001.153: loading after plugins
|
|
||||||
160.663 000.019: inits 3
|
|
||||||
166.205 005.542: reading ShaDa
|
|
||||||
166.587 000.087 000.087: require('luasnip.loaders.from_lua')
|
|
||||||
166.825 000.098 000.098: require('luasnip.loaders.from_snipmate')
|
|
||||||
166.860 000.470: opening buffers
|
|
||||||
167.962 001.102: BufEnter autocommands
|
|
||||||
167.967 000.005: editing files in windows
|
|
||||||
175.357 000.096 000.096: require('nvim-treesitter.indent')
|
|
||||||
175.760 000.079 000.079: require('dashboard.preview')
|
|
||||||
175.781 000.162 000.083: require('dashboard.events')
|
|
||||||
175.933 007.708: VimEnter autocommands
|
|
||||||
176.527 000.475 000.475: sourcing /home/adrielus/.local/share/nvim/site/pack/paqs/start/firenvim/autoload/firenvim.vim
|
|
||||||
176.576 000.168: UIEnter autocommands
|
|
||||||
176.580 000.004: before starting main loop
|
|
||||||
176.918 000.053 000.053: require('nvim_context_vt.config')
|
|
||||||
176.960 000.038 000.038: require('nvim_context_vt.utils')
|
|
||||||
176.965 000.189 000.098: require('nvim_context_vt')
|
|
||||||
178.400 001.631: first screen update
|
|
||||||
178.404 000.004: --- NVIM STARTED ---
|
|
Loading…
Reference in a new issue