From 2bf1f949e4538dc2f616c2490ad14ca4fbad6743 Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Mon, 7 Nov 2022 22:50:23 +0100 Subject: [PATCH] Several changes to lvim config --- home/.config/lvim/after/ftplugin/python.lua | 4 +- home/.config/lvim/config.lua | 7 +- home/.config/lvim/config.lua.bak | 185 +++++++ home/.config/lvim/lua/user/autocmds.lua | 4 +- home/.config/lvim/lua/user/keys.lua | 12 +- home/.config/lvim/lua/user/lsp.lua | 2 +- home/.config/lvim/lua/user/lualine.lua | 1 + home/.config/lvim/lua/user/options.lua | 34 +- home/.config/lvim/lua/user/plugins.lua | 32 +- home/.config/lvim/lua/user/treesitter.lua | 30 +- home/.config/lvim/plugin/packer_compiled.lua | 499 ------------------- home/.config/lvim/spell/en.utf-8.add | 2 + home/.config/lvim/spell/en.utf-8.add.spl | Bin 323 -> 361 bytes 13 files changed, 257 insertions(+), 555 deletions(-) create mode 100644 home/.config/lvim/config.lua.bak delete mode 100644 home/.config/lvim/plugin/packer_compiled.lua diff --git a/home/.config/lvim/after/ftplugin/python.lua b/home/.config/lvim/after/ftplugin/python.lua index 8395fbb..f105b42 100644 --- a/home/.config/lvim/after/ftplugin/python.lua +++ b/home/.config/lvim/after/ftplugin/python.lua @@ -1,2 +1,2 @@ -local dap_install = require "dap-install" -dap_install.config("python", {}) +-- local dap_install = require "dap-install" +-- dap_install.config("python", {}) diff --git a/home/.config/lvim/config.lua b/home/.config/lvim/config.lua index 152a91a..7f30e99 100644 --- a/home/.config/lvim/config.lua +++ b/home/.config/lvim/config.lua @@ -23,21 +23,22 @@ require "user.treesitter" -- lvim.keys.insert_mode[""] = "" --- general +-- General lvim.log.level = "warn" lvim.format_on_save = false lvim.colorscheme = "onedarker" +-- lvim.colorscheme = "lunar" + -- to disable icons and use a minimalist setup, uncomment the following -- lvim.use_icons = false -- TODO: User Config for predefined plugins -- After changing plugin config exit and reopen LunarVim, Run :PackerInstall :PackerCompile lvim.builtin.dap.active = true -lvim.builtin.notify.active = true lvim.builtin.terminal.active = true lvim.builtin.alpha.active = true lvim.builtin.alpha.mode = "dashboard" lvim.builtin.nvimtree.setup.view.side = "left" -lvim.builtin.project.patterns = { ".git", ".svn" } +--lvim.builtin.project.patterns = { ".git", ".svn" } lvim.builtin.bufferline.options.always_show_bufferline = true -- lvim.builtin.nvimtree.setup.renderer.icons.show.git = false diff --git a/home/.config/lvim/config.lua.bak b/home/.config/lvim/config.lua.bak new file mode 100644 index 0000000..6541543 --- /dev/null +++ b/home/.config/lvim/config.lua.bak @@ -0,0 +1,185 @@ +--[[ +lvim is the global options object + +Linters should be +filled in as strings with either +a global executable or a path to +an executable +]] +-- THESE ARE EXAMPLE CONFIGS FEEL FREE TO CHANGE TO WHATEVER YOU WANT + +-- general +lvim.log.level = "warn" +lvim.format_on_save.enabled = false +lvim.colorscheme = "lunar" +-- to disable icons and use a minimalist setup, uncomment the following +-- lvim.use_icons = false + +-- keymappings [view all the defaults by pressing Lk] +lvim.leader = "space" +-- add your own keymapping +lvim.keys.normal_mode[""] = ":w" +-- lvim.keys.normal_mode[""] = ":BufferLineCycleNext" +-- lvim.keys.normal_mode[""] = ":BufferLineCyclePrev" +-- unmap a default keymapping +-- vim.keymap.del("n", "") +-- override a default keymapping +-- lvim.keys.normal_mode[""] = ":q" -- or vim.keymap.set("n", "", ":q" ) + +-- Change Telescope navigation to use j and k for navigation and n and p for history in both input and normal mode. +-- we use protected-mode (pcall) just in case the plugin wasn't loaded yet. +-- local _, actions = pcall(require, "telescope.actions") +-- lvim.builtin.telescope.defaults.mappings = { +-- -- for input mode +-- i = { +-- [""] = actions.move_selection_next, +-- [""] = actions.move_selection_previous, +-- [""] = actions.cycle_history_next, +-- [""] = actions.cycle_history_prev, +-- }, +-- -- for normal mode +-- n = { +-- [""] = actions.move_selection_next, +-- [""] = actions.move_selection_previous, +-- }, +-- } + +-- Change theme settings +-- lvim.builtin.theme.options.dim_inactive = true +-- lvim.builtin.theme.options.style = "storm" + +-- Use which-key to add extra bindings with the leader-key prefix +-- lvim.builtin.which_key.mappings["P"] = { "Telescope projects", "Projects" } +-- lvim.builtin.which_key.mappings["t"] = { +-- name = "+Trouble", +-- r = { "Trouble lsp_references", "References" }, +-- f = { "Trouble lsp_definitions", "Definitions" }, +-- d = { "Trouble document_diagnostics", "Diagnostics" }, +-- q = { "Trouble quickfix", "QuickFix" }, +-- l = { "Trouble loclist", "LocationList" }, +-- w = { "Trouble workspace_diagnostics", "Workspace Diagnostics" }, +-- } + +-- TODO: User Config for predefined plugins +-- After changing plugin config exit and reopen LunarVim, Run :PackerInstall :PackerCompile +lvim.builtin.alpha.active = true +lvim.builtin.alpha.mode = "dashboard" +lvim.builtin.terminal.active = true +lvim.builtin.nvimtree.setup.view.side = "left" +lvim.builtin.nvimtree.setup.renderer.icons.show.git = false + +-- if you don't want all the parsers change this to a table of the ones you want +lvim.builtin.treesitter.ensure_installed = { + "bash", + "c", + "javascript", + "json", + "lua", + "python", + "typescript", + "tsx", + "css", + "rust", + "java", + "yaml", +} + +lvim.builtin.treesitter.ignore_install = { "haskell" } +lvim.builtin.treesitter.highlight.enable = true + +-- generic LSP settings + +-- -- make sure server will always be installed even if the server is in skipped_servers list +-- lvim.lsp.installer.setup.ensure_installed = { +-- "sumneko_lua", +-- "jsonls", +-- } +-- -- change UI setting of `LspInstallInfo` +-- -- see +-- lvim.lsp.installer.setup.ui.check_outdated_servers_on_open = false +-- lvim.lsp.installer.setup.ui.border = "rounded" +-- lvim.lsp.installer.setup.ui.keymaps = { +-- uninstall_server = "d", +-- toggle_server_expand = "o", +-- } + +-- ---@usage disable automatic installation of servers +-- lvim.lsp.installer.setup.automatic_installation = false + +-- ---configure a server manually. !!Requires `:LvimCacheReset` to take effect!! +-- ---see the full default list `:lua print(vim.inspect(lvim.lsp.automatic_configuration.skipped_servers))` +-- vim.list_extend(lvim.lsp.automatic_configuration.skipped_servers, { "pyright" }) +-- local opts = {} -- check the lspconfig documentation for a list of all possible options +-- require("lvim.lsp.manager").setup("pyright", opts) + +-- ---remove a server from the skipped list, e.g. eslint, or emmet_ls. !!Requires `:LvimCacheReset` to take effect!! +-- ---`:LvimInfo` lists which server(s) are skipped for the current filetype +-- lvim.lsp.automatic_configuration.skipped_servers = vim.tbl_filter(function(server) +-- return server ~= "emmet_ls" +-- end, lvim.lsp.automatic_configuration.skipped_servers) + +-- -- you can set a custom on_attach function that will be used for all the language servers +-- -- See +-- lvim.lsp.on_attach_callback = function(client, bufnr) +-- local function buf_set_option(...) +-- vim.api.nvim_buf_set_option(bufnr, ...) +-- end +-- --Enable completion triggered by +-- buf_set_option("omnifunc", "v:lua.vim.lsp.omnifunc") +-- end + +-- -- set a formatter, this will override the language server formatting capabilities (if it exists) +-- local formatters = require "lvim.lsp.null-ls.formatters" +-- formatters.setup { +-- { command = "black", filetypes = { "python" } }, +-- { command = "isort", filetypes = { "python" } }, +-- { +-- -- each formatter accepts a list of options identical to https://github.com/jose-elias-alvarez/null-ls.nvim/blob/main/doc/BUILTINS.md#Configuration +-- command = "prettier", +-- ---@usage arguments to pass to the formatter +-- -- these cannot contain whitespaces, options such as `--line-width 80` become either `{'--line-width', '80'}` or `{'--line-width=80'}` +-- extra_args = { "--print-with", "100" }, +-- ---@usage specify which filetypes to enable. By default a providers will attach to all the filetypes it supports. +-- filetypes = { "typescript", "typescriptreact" }, +-- }, +-- } + +-- -- set additional linters +-- local linters = require "lvim.lsp.null-ls.linters" +-- linters.setup { +-- { command = "flake8", filetypes = { "python" } }, +-- { +-- -- each linter accepts a list of options identical to https://github.com/jose-elias-alvarez/null-ls.nvim/blob/main/doc/BUILTINS.md#Configuration +-- command = "shellcheck", +-- ---@usage arguments to pass to the formatter +-- -- these cannot contain whitespaces, options such as `--line-width 80` become either `{'--line-width', '80'}` or `{'--line-width=80'}` +-- extra_args = { "--severity", "warning" }, +-- }, +-- { +-- command = "codespell", +-- ---@usage specify which filetypes to enable. By default a providers will attach to all the filetypes it supports. +-- filetypes = { "javascript", "python" }, +-- }, +-- } + +-- Additional Plugins +-- lvim.plugins = { +-- { +-- "folke/trouble.nvim", +-- cmd = "TroubleToggle", +-- }, +-- } + +-- Autocommands (https://neovim.io/doc/user/autocmd.html) +-- vim.api.nvim_create_autocmd("BufEnter", { +-- pattern = { "*.json", "*.jsonc" }, +-- -- enable wrap mode for json files only +-- command = "setlocal wrap", +-- }) +-- vim.api.nvim_create_autocmd("FileType", { +-- pattern = "zsh", +-- callback = function() +-- -- let treesitter use bash highlight for zsh files as well +-- require("nvim-treesitter.highlight").attach(0, "bash") +-- end, +-- }) diff --git a/home/.config/lvim/lua/user/autocmds.lua b/home/.config/lvim/lua/user/autocmds.lua index 2c873a3..70f3741 100644 --- a/home/.config/lvim/lua/user/autocmds.lua +++ b/home/.config/lvim/lua/user/autocmds.lua @@ -9,11 +9,11 @@ vim.api.nvim_create_autocmd("BufReadPost", { pattern = "*", command = [[if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif]], }) --- Highlight current line number +-- Highlight current line number as blue vim.api.nvim_create_autocmd("ColorScheme", { pattern = "*", command = "highlight CursorLine guibg=#2b2b2b" }) vim.api.nvim_create_autocmd("ColorScheme", { pattern = "*", command = "highlight CursorLineNr guifg=#1f85de ctermfg=LightBlue", }) -- Custom syntax definitions based on file extensions -vim.api.nvim_create_autocmd("BufRead", { pattern = "*.axml", command = "set ft=xml" }) +-- vim.api.nvim_create_autocmd("BufRead", { pattern = "*.axml", command = "set ft=xml" }) diff --git a/home/.config/lvim/lua/user/keys.lua b/home/.config/lvim/lua/user/keys.lua index d0b657e..84ef620 100644 --- a/home/.config/lvim/lua/user/keys.lua +++ b/home/.config/lvim/lua/user/keys.lua @@ -1,4 +1,4 @@ --- keymappings [view all the defaults by pressing Lk] +-- keymappings (view all the lunarvim keybinds with Lk or list every mapping with :map) lvim.leader = "space" -- Common shortcuts @@ -7,7 +7,7 @@ lvim.keys.insert_mode[""] = ":wi" lvim.keys.normal_mode[""] = ":undo" lvim.keys.normal_mode[""] = ":redo" --- Moevements +-- Horizonal movements lvim.keys.normal_mode["H"] = "^" lvim.keys.normal_mode["L"] = "$" @@ -41,14 +41,6 @@ lvim.keys.normal_mode[""] = ":DapStepOver" lvim.keys.normal_mode[""] = ":DapStepInto" lvim.keys.normal_mode[""] = ":DapStepOut" -lvim.builtin.which_key.mappings["h"] = { - name = "+Hop", - w = { "HopWord", "Word" }, - p = { "HopPattern", "Pattern" }, - a = { "HopAnywhere", "Anywhere" }, - v = { "HopVertical", "Vertical" }, -} - -- Quick word replacing (use . for next word) lvim.keys.normal_mode["cn"] = "*``cgn" lvim.keys.normal_mode["cN"] = "*``cgN" diff --git a/home/.config/lvim/lua/user/lsp.lua b/home/.config/lvim/lua/user/lsp.lua index 35eb228..f162a5c 100644 --- a/home/.config/lvim/lua/user/lsp.lua +++ b/home/.config/lvim/lua/user/lsp.lua @@ -63,6 +63,6 @@ linters.setup { -- https://github.com/jose-elias-alvarez/null-ls.nvim/blob/main/doc/BUILTINS.md#Configuration { command = "flake8", filetypes = { "python" } }, { command = "shellcheck", extra_args = { "--severity", "warning" } }, - { command = "codespell", filetypes = { "javascript", "python" } }, + { command = "codespell", filetypes = { "javascript", "python", "lua" } }, { command = "luacheck", filetypes = { "lua" } }, } diff --git a/home/.config/lvim/lua/user/lualine.lua b/home/.config/lvim/lua/user/lualine.lua index d3635c6..cb74da5 100644 --- a/home/.config/lvim/lua/user/lualine.lua +++ b/home/.config/lvim/lua/user/lualine.lua @@ -1,3 +1,4 @@ -- Add location (row:col) to lualine local components = require "lvim.core.lualine.components" lvim.builtin.lualine.sections.lualine_z = { components.location } +lvim.builtin.lualine.sections.lualine_y = { components.progress } diff --git a/home/.config/lvim/lua/user/options.lua b/home/.config/lvim/lua/user/options.lua index 87c4cf2..d382770 100644 --- a/home/.config/lvim/lua/user/options.lua +++ b/home/.config/lvim/lua/user/options.lua @@ -4,7 +4,7 @@ vim.opt.listchars = { tab = "ï…¸ ", trail = "·" } -- Specify which characters t -- Theme options vim.opt.cursorline = true -- Highlight cursor line -vim.opt.laststatus = 2 -- Always show status line +-- vim.opt.laststatus = 2 -- Always show status line vim.opt.relativenumber = true -- Use relative line numbers vim.opt.wrap = true -- Allow line wrapping @@ -12,13 +12,41 @@ vim.opt.wrap = true -- Allow line wrapping -- vim.opt.autoindent = true -- Enable automatic indenting -- vim.opt.expandtab = true -- Expand tabs into spaces -- vim.opt.tabstop = 2 -- Number of spaces a tab in file accounts for --- vim.opt.shiftwidth = 4 -- Indentation size for Tab +-- vim.opt.shiftwidth = 4 -- Visual number of spaces inserted for each indentation -- vim.opt.softtabstop = 4 -- Tabs/Spaces interlop -- vim.opt.tabpagemax = 50 -- More tabs -- vim.opt.shiftround = true -- Always round indent to multiple of shiftwidth - +-- -- Enable syntax highlighting in fenced markdown code-blocks vim.g.markdown_fenced_languages = {"html", "javascript", "typescript", "css", "scss", "lua", "vim", "python"} +-- Make vim transparent (removes background) +-- lvim.transparent_window = true + +-- Configure formatoption +lvim.autocommands._formatoptions = {} +vim.opt.formatoptions = { + -- default: tcqj + t = true, -- Auto-wrap text using 'textwidth' + c = true, -- Auto-wrap comments using 'textwidth', inserting the comment leader automatically + r = false, -- Automatically insert the comment leader after hitting in Insert mode + o = false, -- Automatically insert the comment leader after hitting 'o' or 'O' in Normal mode + q = true, -- Allow formatting of comments with "gq" (won't change blank lines) + w = false, -- Trailing whitespace continues paragraph in the next line, non-whitespace ends it + a = false, -- Automatic formatting of paragraph. Every time text is inserted/deleted, paragraph gets reformatted + n = false, -- Recognize numbered lists when wrapping. + ["2"] = true, -- Use indent from 2nd line of a paragraph + v = false, -- Only break a line at a blank entered during current insert command + b = false, -- Like 'v', but only wrap on entering blank, or before the wrap margin + l = false, -- Long lines are not broken in insert mode + m = false, -- Also break at a multibyte character above 255 + M = false, -- When joining lines, don't insert a space before, or after two multibyte chars (overruled by 'B') + B = false, -- When joining lines, don't insert a space between two multibyte chars (overruled by 'M') + ["1"] = true, -- Break line before a single-letter word. + ["]"] = false, -- Respect 'textwidth' rigorously, no line can be longer unless there's some except rule + j = true, -- Remove comment leader when joining lines, when it makes sense + p = false, -- Don't break lines at single spaces that follow periods (such as for Surely you're joking, Mr. Feynman!) +} + -- Other vim.opt.shell = "/bin/sh" diff --git a/home/.config/lvim/lua/user/plugins.lua b/home/.config/lvim/lua/user/plugins.lua index ef432f3..99d713e 100644 --- a/home/.config/lvim/lua/user/plugins.lua +++ b/home/.config/lvim/lua/user/plugins.lua @@ -31,26 +31,18 @@ lvim.plugins = { vim.cmd "let g:minimap_width = 10" end, }, - { - -- Integrated lf file manager - "ptzz/lf.vim", - config = function() - vim.g.lf_map_keys = 0 - end, - requires = "voldikss/vim-floaterm", - }, -- Github copilot for code completion - { - "zbirenbaum/copilot.lua", - event = { "VimEnter" }, - config = function() - vim.defer_fn(function() - require("copilot").setup() - end, 100) - end, - }, - { "zbirenbaum/copilot-cmp", after = { "copilot.lua", "nvim-cmp" } }, + -- { + -- "zbirenbaum/copilot.lua", + -- event = { "VimEnter" }, + -- config = function() + -- vim.defer_fn(function() + -- require("copilot").setup() + -- end, 100) + -- end, + -- }, + -- { "zbirenbaum/copilot-cmp", after = { "copilot.lua", "nvim-cmp" } }, -- { "jasonccox/vim-wayland-clipboard" }, @@ -97,5 +89,5 @@ lvim.plugins = { } -- Register copilot as cmp source -lvim.builtin.cmp.formatting.source_names["copilot"] = "(Copilot)" -table.insert(lvim.builtin.cmp.sources, 1, { name = "copilot" }) +-- lvim.builtin.cmp.formatting.source_names["copilot"] = "(Copilot)" +-- table.insert(lvim.builtin.cmp.sources, 1, { name = "copilot" }) diff --git a/home/.config/lvim/lua/user/treesitter.lua b/home/.config/lvim/lua/user/treesitter.lua index 804e7e5..54169a6 100644 --- a/home/.config/lvim/lua/user/treesitter.lua +++ b/home/.config/lvim/lua/user/treesitter.lua @@ -18,21 +18,21 @@ lvim.builtin.treesitter.ignore_install = {} lvim.builtin.treesitter.highlight.enabled = true -- lvim.builtin.treesitter.rainbow.enable = true -local parser_config = require "nvim-treesitter.parsers".get_parser_configs() -parser_config.apparmor = { - install_info = { - url = "~/Personal/Programming/GitHub/Other/tree-sitter-apparmor", -- local path or git repo - files = {"src/parser.c"}, - -- optional entries: - branch = "main", -- default branch in case of git repo if different from master - generate_requires_npm = false, -- if stand-alone parser without npm dependencies - requires_generate_from_grammar = false, -- if folder contains pre-generated src/parser.c - }, - filetype = "apparmor", -- if filetype does not match the parser name -} - -local ft_to_parser = require"nvim-treesitter.parsers".filetype_to_parsername -ft_to_parser.apparmor = "apparmor" +-- local parser_config = require "nvim-treesitter.parsers".get_parser_configs() +-- parser_config.apparmor = { +-- install_info = { +-- url = "~/Personal/Programming/GitHub/Other/tree-sitter-apparmor", -- local path or git repo +-- files = {"src/parser.c"}, +-- -- optional entries: +-- branch = "main", -- default branch in case of git repo if different from master +-- generate_requires_npm = false, -- if stand-alone parser without npm dependencies +-- requires_generate_from_grammar = false, -- if folder contains pre-generated src/parser.c +-- }, +-- filetype = "apparmor", -- if filetype does not match the parser name +-- } +-- +-- local ft_to_parser = require"nvim-treesitter.parsers".filetype_to_parsername +-- ft_to_parser.apparmor = "apparmor" -- Temporary treesitter lvim.keys.normal_mode["gu"] = ":TSUpdate apparmor" diff --git a/home/.config/lvim/plugin/packer_compiled.lua b/home/.config/lvim/plugin/packer_compiled.lua deleted file mode 100644 index 5a101fa..0000000 --- a/home/.config/lvim/plugin/packer_compiled.lua +++ /dev/null @@ -1,499 +0,0 @@ --- Automatically generated packer.nvim plugin loader code - -if vim.api.nvim_call_function('has', {'nvim-0.5'}) ~= 1 then - vim.api.nvim_command('echohl WarningMsg | echom "Invalid Neovim version for packer.nvim! | echohl None"') - return -end - -vim.api.nvim_command('packadd packer.nvim') - -local no_errors, error_msg = pcall(function() - -_G._packer = _G._packer or {} -_G._packer.inside_compile = true - -local time -local profile_info -local should_profile = false -if should_profile then - local hrtime = vim.loop.hrtime - profile_info = {} - time = function(chunk, start) - if start then - profile_info[chunk] = hrtime() - else - profile_info[chunk] = (hrtime() - profile_info[chunk]) / 1e6 - end - end -else - time = function(chunk, start) end -end - -local function save_profiles(threshold) - local sorted_times = {} - for chunk_name, time_taken in pairs(profile_info) do - sorted_times[#sorted_times + 1] = {chunk_name, time_taken} - end - table.sort(sorted_times, function(a, b) return a[2] > b[2] end) - local results = {} - for i, elem in ipairs(sorted_times) do - if not threshold or threshold and elem[2] > threshold then - results[i] = elem[1] .. ' took ' .. elem[2] .. 'ms' - end - end - if threshold then - table.insert(results, '(Only showing plugins that took longer than ' .. threshold .. ' ms ' .. 'to load)') - end - - _G._packer.profile_output = results -end - -time([[Luarocks path setup]], true) -local package_path_str = "/home/itsdrike/.cache/lvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/?.lua;/home/itsdrike/.cache/lvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/?/init.lua;/home/itsdrike/.cache/lvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/?.lua;/home/itsdrike/.cache/lvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/?/init.lua" -local install_cpath_pattern = "/home/itsdrike/.cache/lvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/?.so" -if not string.find(package.path, package_path_str, 1, true) then - package.path = package.path .. ';' .. package_path_str -end - -if not string.find(package.cpath, install_cpath_pattern, 1, true) then - package.cpath = package.cpath .. ';' .. install_cpath_pattern -end - -time([[Luarocks path setup]], false) -time([[try_loadstring definition]], true) -local function try_loadstring(s, component, name) - local success, result = pcall(loadstring(s), name, _G.packer_plugins[name]) - if not success then - vim.schedule(function() - vim.api.nvim_notify('packer.nvim: Error running ' .. component .. ' for ' .. name .. ': ' .. result, vim.log.levels.ERROR, {}) - end) - end - return result -end - -time([[try_loadstring definition]], false) -time([[Defining packer_plugins]], true) -_G.packer_plugins = { - ["Comment.nvim"] = { - config = { "\27LJ\2\n?\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\nsetup\22lvim.core.comment\frequire\0" }, - loaded = false, - needs_bufread = false, - only_cond = false, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/opt/Comment.nvim", - url = "https://github.com/numToStr/Comment.nvim" - }, - ["FixCursorHold.nvim"] = { - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/FixCursorHold.nvim", - url = "https://github.com/antoinemadec/FixCursorHold.nvim" - }, - LuaSnip = { - config = { "\27LJ\2\nñ\3\0\0\v\0\23\00166\0\0\0'\2\1\0B\0\2\0024\1\0\0006\2\2\0009\2\3\0029\2\4\0029\2\5\0029\2\6\2\15\0\2\0X\3\f€\21\2\1\0\22\2\0\0029\3\a\0006\5\b\0B\5\1\2'\6\t\0'\a\n\0'\b\v\0'\t\f\0'\n\r\0B\3\a\2<\3\2\0019\2\a\0006\4\14\0B\4\1\2'\5\15\0B\2\3\0029\3\16\0\18\5\2\0B\3\2\2\15\0\3\0X\4\3€\21\3\1\0\22\3\0\3<\2\3\0016\3\0\0'\5\17\0B\3\2\0029\3\18\3B\3\1\0016\3\0\0'\5\19\0B\3\2\0029\3\18\0035\5\20\0=\1\21\5B\3\2\0016\3\0\0'\5\22\0B\3\2\0029\3\18\3B\3\1\1K\0\1\0\"luasnip.loaders.from_snipmate\npaths\1\0\0 luasnip.loaders.from_vscode\14lazy_load\29luasnip.loaders.from_lua\17is_directory\rsnippets\19get_config_dir\22friendly-snippets\nstart\vpacker\tpack\tsite\20get_runtime_dir\15join_paths\22friendly_snippets\fsources\fluasnip\fbuiltin\tlvim\15lvim.utils\frequire\2\0" }, - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/LuaSnip", - url = "https://github.com/L3MON4D3/LuaSnip" - }, - ["alpha-nvim"] = { - config = { "\27LJ\2\n=\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\nsetup\20lvim.core.alpha\frequire\0" }, - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/alpha-nvim", - url = "https://github.com/goolord/alpha-nvim" - }, - ["bufferline.nvim"] = { - config = { "\27LJ\2\nB\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\nsetup\25lvim.core.bufferline\frequire\0" }, - loaded = false, - needs_bufread = false, - only_cond = false, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/opt/bufferline.nvim", - url = "https://github.com/akinsho/bufferline.nvim" - }, - ["cmp-buffer"] = { - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/cmp-buffer", - url = "https://github.com/hrsh7th/cmp-buffer" - }, - ["cmp-nvim-lsp"] = { - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/cmp-nvim-lsp", - url = "https://github.com/hrsh7th/cmp-nvim-lsp" - }, - ["cmp-path"] = { - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/cmp-path", - url = "https://github.com/hrsh7th/cmp-path" - }, - cmp_luasnip = { - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/cmp_luasnip", - url = "https://github.com/saadparwaiz1/cmp_luasnip" - }, - ["copilot-cmp"] = { - load_after = { - ["copilot.lua"] = true - }, - loaded = false, - needs_bufread = false, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/opt/copilot-cmp", - url = "https://github.com/zbirenbaum/copilot-cmp" - }, - ["copilot.lua"] = { - after = { "copilot-cmp" }, - config = { "\27LJ\2\n5\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\nsetup\fcopilot\frequire-\1\0\4\0\3\0\0066\0\0\0009\0\1\0003\2\2\0)\3d\0B\0\3\1K\0\1\0\0\rdefer_fn\bvim\0" }, - loaded = false, - needs_bufread = false, - only_cond = false, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/opt/copilot.lua", - url = "https://github.com/zbirenbaum/copilot.lua" - }, - ["dap-buddy.nvim"] = { - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/dap-buddy.nvim", - url = "https://github.com/Pocco81/dap-buddy.nvim" - }, - ["friendly-snippets"] = { - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/friendly-snippets", - url = "https://github.com/rafamadriz/friendly-snippets" - }, - ["gitsigns.nvim"] = { - config = { "\27LJ\2\n@\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\nsetup\23lvim.core.gitsigns\frequire\0" }, - loaded = false, - needs_bufread = false, - only_cond = false, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/opt/gitsigns.nvim", - url = "https://github.com/lewis6991/gitsigns.nvim" - }, - ["lf.vim"] = { - config = { "\27LJ\2\n-\0\0\2\0\3\0\0056\0\0\0009\0\1\0)\1\0\0=\1\2\0K\0\1\0\16lf_map_keys\6g\bvim\0" }, - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/lf.vim", - url = "https://github.com/ptzz/lf.vim" - }, - ["lsp_signature.nvim"] = { - config = { "\27LJ\2\n?\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\14on_attach\18lsp_signature\frequire\0" }, - loaded = false, - needs_bufread = false, - only_cond = false, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/opt/lsp_signature.nvim", - url = "https://github.com/ray-x/lsp_signature.nvim" - }, - ["lua-dev.nvim"] = { - loaded = false, - needs_bufread = false, - only_cond = false, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/opt/lua-dev.nvim", - url = "https://github.com/folke/lua-dev.nvim" - }, - ["lualine.nvim"] = { - config = { "\27LJ\2\n?\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\nsetup\22lvim.core.lualine\frequire\0" }, - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/lualine.nvim", - url = "https://github.com/nvim-lualine/lualine.nvim" - }, - ["mason-lspconfig.nvim"] = { - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/mason-lspconfig.nvim", - url = "https://github.com/williamboman/mason-lspconfig.nvim" - }, - ["mason.nvim"] = { - config = { "\27LJ\2\n=\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\nsetup\20lvim.core.mason\frequire\0" }, - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/mason.nvim", - url = "https://github.com/williamboman/mason.nvim" - }, - ["minimap.vim"] = { - config = { "\27LJ\2\n<\0\0\3\0\3\0\0056\0\0\0009\0\1\0'\2\2\0B\0\2\1K\0\1\0\29let g:minimap_width = 10\bcmd\bvim\0" }, - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/minimap.vim", - url = "https://github.com/wfxr/minimap.vim" - }, - ["nlsp-settings.nvim"] = { - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/nlsp-settings.nvim", - url = "https://github.com/tamago324/nlsp-settings.nvim" - }, - ["null-ls.nvim"] = { - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/null-ls.nvim", - url = "https://github.com/jose-elias-alvarez/null-ls.nvim" - }, - ["nvim-autopairs"] = { - config = { "\27LJ\2\nA\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\nsetup\24lvim.core.autopairs\frequire\0" }, - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/nvim-autopairs", - url = "https://github.com/windwp/nvim-autopairs" - }, - ["nvim-cmp"] = { - after = { "copilot-cmp" }, - config = { "\27LJ\2\n`\0\0\3\0\6\0\v6\0\0\0009\0\1\0009\0\2\0\15\0\0\0X\1\5€6\0\3\0'\2\4\0B\0\2\0029\0\5\0B\0\1\1K\0\1\0\nsetup\18lvim.core.cmp\frequire\bcmp\fbuiltin\tlvim\0" }, - loaded = true, - only_config = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/nvim-cmp", - url = "https://github.com/hrsh7th/nvim-cmp" - }, - ["nvim-dap"] = { - config = { "\27LJ\2\n;\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\nsetup\18lvim.core.dap\frequire\0" }, - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/nvim-dap", - url = "https://github.com/mfussenegger/nvim-dap" - }, - ["nvim-lspconfig"] = { - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/nvim-lspconfig", - url = "https://github.com/neovim/nvim-lspconfig" - }, - ["nvim-notify"] = { - config = { "\27LJ\2\n>\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\nsetup\21lvim.core.notify\frequire\0" }, - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/nvim-notify", - url = "https://github.com/rcarriga/nvim-notify" - }, - ["nvim-tree.lua"] = { - config = { "\27LJ\2\n@\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\nsetup\23lvim.core.nvimtree\frequire\0" }, - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/nvim-tree.lua", - url = "https://github.com/kyazdani42/nvim-tree.lua" - }, - ["nvim-treesitter"] = { - config = { "\27LJ\2\nB\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\nsetup\25lvim.core.treesitter\frequire\0" }, - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/nvim-treesitter", - url = "https://github.com/nvim-treesitter/nvim-treesitter" - }, - ["nvim-treesitter-context"] = { - config = { "\27LJ\2\n¼\1\0\0\5\0\b\0\v6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\3\0005\3\5\0005\4\4\0=\4\6\3=\3\a\2B\0\2\1K\0\1\0\rpatterns\fdefault\1\0\0\1\t\0\0\nclass\rfunction\vmethod\nwhile\bfor\aif\vswitch\tcase\1\0\3\rthrottle\2\venable\2\14max_lines\3\0\nsetup\23treesitter-context\frequire\0" }, - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/nvim-treesitter-context", - url = "https://github.com/romgrk/nvim-treesitter-context" - }, - ["nvim-ts-context-commentstring"] = { - loaded = false, - needs_bufread = false, - only_cond = false, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/opt/nvim-ts-context-commentstring", - url = "https://github.com/JoosepAlviste/nvim-ts-context-commentstring" - }, - ["nvim-web-devicons"] = { - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/nvim-web-devicons", - url = "https://github.com/kyazdani42/nvim-web-devicons" - }, - ["onedarker.nvim"] = { - config = { "\27LJ\2\nš\1\0\0\3\0\t\0\0196\0\0\0\15\0\0\0X\1\15€6\0\0\0009\0\1\0\a\0\2\0X\0\v€6\0\3\0'\2\2\0B\0\2\0029\0\4\0B\0\1\0016\0\0\0009\0\5\0009\0\6\0009\0\a\0'\1\2\0=\1\b\0K\0\1\0\ntheme\foptions\flualine\fbuiltin\nsetup\frequire\14onedarker\16colorscheme\tlvim\30\1\0\3\0\2\0\0046\0\0\0003\2\1\0B\0\2\1K\0\1\0\0\npcall\0" }, - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/onedarker.nvim", - url = "https://github.com/lunarvim/onedarker.nvim" - }, - ["packer.nvim"] = { - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/packer.nvim", - url = "https://github.com/wbthomason/packer.nvim" - }, - playground = { - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/playground", - url = "https://github.com/nvim-treesitter/playground" - }, - ["plenary.nvim"] = { - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/plenary.nvim", - url = "https://github.com/nvim-lua/plenary.nvim" - }, - ["popup.nvim"] = { - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/popup.nvim", - url = "https://github.com/nvim-lua/popup.nvim" - }, - ["project.nvim"] = { - config = { "\27LJ\2\n?\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\nsetup\22lvim.core.project\frequire\0" }, - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/project.nvim", - url = "https://github.com/ahmedkhalf/project.nvim" - }, - ["schemastore.nvim"] = { - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/schemastore.nvim", - url = "https://github.com/b0o/schemastore.nvim" - }, - ["structlog.nvim"] = { - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/structlog.nvim", - url = "https://github.com/Tastyep/structlog.nvim" - }, - ["symbols-outline.nvim"] = { - config = { "\27LJ\2\n]\0\0\3\0\4\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\3\0B\0\2\1K\0\1\0\1\0\2\nwidth\3\18\19autofold_depth\3\1\nsetup\20symbols-outline\frequire\0" }, - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/symbols-outline.nvim", - url = "https://github.com/simrat39/symbols-outline.nvim" - }, - ["telescope-fzf-native.nvim"] = { - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/telescope-fzf-native.nvim", - url = "https://github.com/nvim-telescope/telescope-fzf-native.nvim" - }, - ["telescope.nvim"] = { - config = { "\27LJ\2\nA\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\nsetup\24lvim.core.telescope\frequire\0" }, - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/telescope.nvim", - url = "https://github.com/nvim-telescope/telescope.nvim" - }, - ["toggleterm.nvim"] = { - config = { "\27LJ\2\n@\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\nsetup\23lvim.core.terminal\frequire\0" }, - loaded = false, - needs_bufread = false, - only_cond = false, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/opt/toggleterm.nvim", - url = "https://github.com/akinsho/toggleterm.nvim" - }, - ["vim-floaterm"] = { - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/vim-floaterm", - url = "https://github.com/voldikss/vim-floaterm" - }, - ["vim-wakatime"] = { - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/vim-wakatime", - url = "https://github.com/wakatime/vim-wakatime" - }, - ["vim-wayland-clipboard"] = { - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/vim-wayland-clipboard", - url = "https://github.com/jasonccox/vim-wayland-clipboard" - }, - ["which-key.nvim"] = { - config = { "\27LJ\2\nA\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\nsetup\24lvim.core.which-key\frequire\0" }, - loaded = false, - needs_bufread = false, - only_cond = false, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/opt/which-key.nvim", - url = "https://github.com/folke/which-key.nvim" - }, - ["yuck.vim"] = { - loaded = true, - path = "/home/itsdrike/.local/share/lunarvim/site/pack/packer/start/yuck.vim", - url = "https://github.com/elkowar/yuck.vim" - } -} - -time([[Defining packer_plugins]], false) -local module_lazy_loads = { - ["^lua%-dev"] = "lua-dev.nvim" -} -local lazy_load_called = {['packer.load'] = true} -local function lazy_load_module(module_name) - local to_load = {} - if lazy_load_called[module_name] then return nil end - lazy_load_called[module_name] = true - for module_pat, plugin_name in pairs(module_lazy_loads) do - if not _G.packer_plugins[plugin_name].loaded and string.match(module_name, module_pat) then - to_load[#to_load + 1] = plugin_name - end - end - - if #to_load > 0 then - require('packer.load')(to_load, {module = module_name}, _G.packer_plugins) - local loaded_mod = package.loaded[module_name] - if loaded_mod then - return function(modname) return loaded_mod end - end - end -end - -if not vim.g.packer_custom_loader_enabled then - table.insert(package.loaders, 1, lazy_load_module) - vim.g.packer_custom_loader_enabled = true -end - --- Config for: telescope.nvim -time([[Config for telescope.nvim]], true) -try_loadstring("\27LJ\2\nA\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\nsetup\24lvim.core.telescope\frequire\0", "config", "telescope.nvim") -time([[Config for telescope.nvim]], false) --- Config for: nvim-cmp -time([[Config for nvim-cmp]], true) -try_loadstring("\27LJ\2\n`\0\0\3\0\6\0\v6\0\0\0009\0\1\0009\0\2\0\15\0\0\0X\1\5€6\0\3\0'\2\4\0B\0\2\0029\0\5\0B\0\1\1K\0\1\0\nsetup\18lvim.core.cmp\frequire\bcmp\fbuiltin\tlvim\0", "config", "nvim-cmp") -time([[Config for nvim-cmp]], false) --- Config for: minimap.vim -time([[Config for minimap.vim]], true) -try_loadstring("\27LJ\2\n<\0\0\3\0\3\0\0056\0\0\0009\0\1\0'\2\2\0B\0\2\1K\0\1\0\29let g:minimap_width = 10\bcmd\bvim\0", "config", "minimap.vim") -time([[Config for minimap.vim]], false) --- Config for: onedarker.nvim -time([[Config for onedarker.nvim]], true) -try_loadstring("\27LJ\2\nš\1\0\0\3\0\t\0\0196\0\0\0\15\0\0\0X\1\15€6\0\0\0009\0\1\0\a\0\2\0X\0\v€6\0\3\0'\2\2\0B\0\2\0029\0\4\0B\0\1\0016\0\0\0009\0\5\0009\0\6\0009\0\a\0'\1\2\0=\1\b\0K\0\1\0\ntheme\foptions\flualine\fbuiltin\nsetup\frequire\14onedarker\16colorscheme\tlvim\30\1\0\3\0\2\0\0046\0\0\0003\2\1\0B\0\2\1K\0\1\0\0\npcall\0", "config", "onedarker.nvim") -time([[Config for onedarker.nvim]], false) --- Config for: nvim-dap -time([[Config for nvim-dap]], true) -try_loadstring("\27LJ\2\n;\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\nsetup\18lvim.core.dap\frequire\0", "config", "nvim-dap") -time([[Config for nvim-dap]], false) --- Config for: nvim-treesitter -time([[Config for nvim-treesitter]], true) -try_loadstring("\27LJ\2\nB\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\nsetup\25lvim.core.treesitter\frequire\0", "config", "nvim-treesitter") -time([[Config for nvim-treesitter]], false) --- Config for: nvim-treesitter-context -time([[Config for nvim-treesitter-context]], true) -try_loadstring("\27LJ\2\n¼\1\0\0\5\0\b\0\v6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\3\0005\3\5\0005\4\4\0=\4\6\3=\3\a\2B\0\2\1K\0\1\0\rpatterns\fdefault\1\0\0\1\t\0\0\nclass\rfunction\vmethod\nwhile\bfor\aif\vswitch\tcase\1\0\3\rthrottle\2\venable\2\14max_lines\3\0\nsetup\23treesitter-context\frequire\0", "config", "nvim-treesitter-context") -time([[Config for nvim-treesitter-context]], false) --- Config for: lf.vim -time([[Config for lf.vim]], true) -try_loadstring("\27LJ\2\n-\0\0\2\0\3\0\0056\0\0\0009\0\1\0)\1\0\0=\1\2\0K\0\1\0\16lf_map_keys\6g\bvim\0", "config", "lf.vim") -time([[Config for lf.vim]], false) --- Config for: alpha-nvim -time([[Config for alpha-nvim]], true) -try_loadstring("\27LJ\2\n=\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\nsetup\20lvim.core.alpha\frequire\0", "config", "alpha-nvim") -time([[Config for alpha-nvim]], false) --- Config for: nvim-notify -time([[Config for nvim-notify]], true) -try_loadstring("\27LJ\2\n>\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\nsetup\21lvim.core.notify\frequire\0", "config", "nvim-notify") -time([[Config for nvim-notify]], false) --- Config for: lualine.nvim -time([[Config for lualine.nvim]], true) -try_loadstring("\27LJ\2\n?\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\nsetup\22lvim.core.lualine\frequire\0", "config", "lualine.nvim") -time([[Config for lualine.nvim]], false) --- Config for: project.nvim -time([[Config for project.nvim]], true) -try_loadstring("\27LJ\2\n?\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\nsetup\22lvim.core.project\frequire\0", "config", "project.nvim") -time([[Config for project.nvim]], false) --- Config for: nvim-tree.lua -time([[Config for nvim-tree.lua]], true) -try_loadstring("\27LJ\2\n@\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\nsetup\23lvim.core.nvimtree\frequire\0", "config", "nvim-tree.lua") -time([[Config for nvim-tree.lua]], false) --- Config for: LuaSnip -time([[Config for LuaSnip]], true) -try_loadstring("\27LJ\2\nñ\3\0\0\v\0\23\00166\0\0\0'\2\1\0B\0\2\0024\1\0\0006\2\2\0009\2\3\0029\2\4\0029\2\5\0029\2\6\2\15\0\2\0X\3\f€\21\2\1\0\22\2\0\0029\3\a\0006\5\b\0B\5\1\2'\6\t\0'\a\n\0'\b\v\0'\t\f\0'\n\r\0B\3\a\2<\3\2\0019\2\a\0006\4\14\0B\4\1\2'\5\15\0B\2\3\0029\3\16\0\18\5\2\0B\3\2\2\15\0\3\0X\4\3€\21\3\1\0\22\3\0\3<\2\3\0016\3\0\0'\5\17\0B\3\2\0029\3\18\3B\3\1\0016\3\0\0'\5\19\0B\3\2\0029\3\18\0035\5\20\0=\1\21\5B\3\2\0016\3\0\0'\5\22\0B\3\2\0029\3\18\3B\3\1\1K\0\1\0\"luasnip.loaders.from_snipmate\npaths\1\0\0 luasnip.loaders.from_vscode\14lazy_load\29luasnip.loaders.from_lua\17is_directory\rsnippets\19get_config_dir\22friendly-snippets\nstart\vpacker\tpack\tsite\20get_runtime_dir\15join_paths\22friendly_snippets\fsources\fluasnip\fbuiltin\tlvim\15lvim.utils\frequire\2\0", "config", "LuaSnip") -time([[Config for LuaSnip]], false) --- Config for: mason.nvim -time([[Config for mason.nvim]], true) -try_loadstring("\27LJ\2\n=\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\nsetup\20lvim.core.mason\frequire\0", "config", "mason.nvim") -time([[Config for mason.nvim]], false) --- Config for: nvim-autopairs -time([[Config for nvim-autopairs]], true) -try_loadstring("\27LJ\2\nA\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\nsetup\24lvim.core.autopairs\frequire\0", "config", "nvim-autopairs") -time([[Config for nvim-autopairs]], false) --- Config for: symbols-outline.nvim -time([[Config for symbols-outline.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\0005\2\3\0B\0\2\1K\0\1\0\1\0\2\nwidth\3\18\19autofold_depth\3\1\nsetup\20symbols-outline\frequire\0", "config", "symbols-outline.nvim") -time([[Config for symbols-outline.nvim]], false) -vim.cmd [[augroup packer_load_aucmds]] -vim.cmd [[au!]] - -- Event lazy-loads -time([[Defining lazy-load event autocommands]], true) -vim.cmd [[au VimEnter * ++once lua require("packer.load")({'copilot.lua'}, { event = "VimEnter *" }, _G.packer_plugins)]] -vim.cmd [[au BufWinEnter * ++once lua require("packer.load")({'which-key.nvim', 'bufferline.nvim', 'toggleterm.nvim'}, { event = "BufWinEnter *" }, _G.packer_plugins)]] -vim.cmd [[au BufReadPost * ++once lua require("packer.load")({'nvim-ts-context-commentstring'}, { event = "BufReadPost *" }, _G.packer_plugins)]] -vim.cmd [[au BufRead * ++once lua require("packer.load")({'gitsigns.nvim', 'lsp_signature.nvim', 'Comment.nvim'}, { event = "BufRead *" }, _G.packer_plugins)]] -time([[Defining lazy-load event autocommands]], false) -vim.cmd("augroup END") - -_G._packer.inside_compile = false -if _G._packer.needs_bufread == true then - vim.cmd("doautocmd BufRead") -end -_G._packer.needs_bufread = false - -if should_profile then save_profiles() end - -end) - -if not no_errors then - error_msg = error_msg:gsub('"', '\\"') - vim.api.nvim_command('echohl ErrorMsg | echom "Error in packer_compiled: '..error_msg..'" | echom "Please check your config for correctness" | echohl None') -end diff --git a/home/.config/lvim/spell/en.utf-8.add b/home/.config/lvim/spell/en.utf-8.add index e63c2e3..e32b4bd 100644 --- a/home/.config/lvim/spell/en.utf-8.add +++ b/home/.config/lvim/spell/en.utf-8.add @@ -22,3 +22,5 @@ serializable ItsDrike itsdrike protonmail +wireguard +Apparmor diff --git a/home/.config/lvim/spell/en.utf-8.add.spl b/home/.config/lvim/spell/en.utf-8.add.spl index 107bdb0ecd543020bcf53405c6c302eefe10875e..d88690d347f6e09e7ae3cbfd699b180972a9a8ae 100644 GIT binary patch delta 209 zcmX9&I}US&l#LQxw|ee delta 192 zcmW-aF%H5&3LyAvW*`9eg;Q)u}DEf3%oU{hGy zS?}5(e)2recA>M*Ex$zcn(WP?c1;)J`O=Tcwn{e~B2MrCQ5q3oMAtaNGVvg)MTCWC zl0XvBqm$u*eJ?ewwrEgDQ1_0V7idvRhgsZ8{d|1S7KxQ`qd0Z)rxY?uS1YcbDU|Mi J?{QmW^#e>SD-Hkv