diff --git a/init.lua b/init.lua index 37a206f..8178c55 100755 --- a/init.lua +++ b/init.lua @@ -16,3 +16,4 @@ require('plugins/snippets') require('plugins/neoscroll') require('plugins/null-ls') require('plugins/nvim-mapper') +require('plugins/todo-comments') diff --git a/lua/keymaps.lua b/lua/keymaps.lua index 34edb0e..9fe2b4b 100644 --- a/lua/keymaps.lua +++ b/lua/keymaps.lua @@ -48,10 +48,82 @@ map('n', 'fe', ':Telescope file_browser', default_opts) Mapper = require("nvim-mapper") local M = Mapper.map -- For Neovim >= 0.7.0 -M('n', 'P', ":MarkdownPreview", {silent = true, noremap = true}, "Markdown", "md_preview", "Display Markdown preview in Qutebrowser") -M('n', 'fe', ":Telescope file_browser", {silent=true, noremap=true}, "Telescope", "telescope-file-browser", "Find files and directories in telescope") -M('n', '', "@t",{silent=true, noremap=true}, "Todo Comments", "todo_todo", "Add To-do/Task to the beginning of the line") -M('n', '', "@s", {silent=true, noremap=true}, "Todo Comments", "todo_seng", "Add Solutions Engineering to the beginning of the line") -M('n', '', "@f", {silent=true, noremap=true}, "Todo Comments", "todo_feat", "Add Feature Request tag to the beginning of the line. ") -M('n', '', "@c", {silent=true, noremap=true}, "Todo Comments", "todo_complete", "Replace tag with Complete tag at beginning of the line.") -M('n', '', "@w", {silent=true, noremap=true}, "Todo Comments", "todo_error", "Add Warning/Error tag at the beginning of the line.") +M( + 'n', 'P', ":MarkdownPreview", + {silent = true, noremap = true}, + "Markdown", + "md_preview", + "Display Markdown preview in Qutebrowser" +) + +M( + 'n', 'fe', ":Telescope file_browser", + {silent=true, noremap=true}, + "Telescope", + "telescope-file-browser", + "Find files and directories in telescope" +) + +M( + 'n', '', "@t", + {silent=true, noremap=true}, + "Todo Comments", + "todo_todo", + "Add To-do/Task to the beginning of the line" +) + +M( + 'n', '', "@s", + {silent=true, noremap=true}, + "Todo Comments", + "todo_seng", + "Add Solutions Engineering to the beginning of the line" +) + +M( + 'n', '', "@f", + {silent=true, noremap=true}, + "Todo Comments", + "todo_feat", + "Add Feature Request tag to the beginning of the line. " +) + +M( + 'n', '', "@c", + {silent=true, noremap=true}, + "Todo Comments", + "todo_complete", + "Replace tag with Complete tag at beginning of the line." + ) + +M( + 'n', '', "@w", + {silent=true, noremap=true}, + "Todo Comments", + "todo_error", + "Add Warning/Error tag at the beginning of the line." + ) + +M( + 'n', 'ce', ":TodoTrouble keywords=TODO | resize +10", + {silent=true, noremap=true}, + "Show Todos", + "todo_trouble_todo", + "Show Todos from Folke's Todo Comments Plugin." + ) + +M( + 'n', 'cf', ":TodoTrouble keywords=FEAT", + {silent=true, noremap=true}, + "Show Todos", + "todo_trouble_todo", + "Show Feature Requests from Folke's Todo Comments Plugin." + ) + +M( + 'n', 'cq', ":TodoTrouble keywords=ERROR, WARN", + {silent=true, noremap=true}, + "Show Todos", + "todo_trouble_todo", + "Show Errors from Folke's Todo Comments Plugin." + ) diff --git a/lua/plugins/null-ls.lua b/lua/plugins/null-ls.lua index d375d63..08db788 100644 --- a/lua/plugins/null-ls.lua +++ b/lua/plugins/null-ls.lua @@ -1,15 +1,21 @@ local null_ls = require("null-ls") null_ls.setup({ - on_attach = function(client, bufnr) + --[[ on_attach = function(client, bufnr) if client.resolved_capabilities.document_formatting then vim.cmd("nnoremap f :lua vim.lsp.buf.formatting()") -- format on save vim.cmd("autocmd BufWritePost lua vim.lsp.buf.formatting()") end - if client.resolved_capabilities.document_range_formatting then vim.cmd("xnoremap f :lua vim.lsp.buf.range_formatting({})") - end - end, + end + end,--]] + sources = { + null_ls.builtins.completion.spell, + null_ls.builtins.diagnostics.codespell, + null_ls.builtins.diagnostics.markdownlint.with({ extra_args = { "--disable MD013" }}), + null_ls.builtins.diagnostics.pycodestyle, + null_ls.builtins.formatting.black.with({ extra_args = { "--fast" }}), + }, }) diff --git a/lua/plugins/plugins.lua b/lua/plugins/plugins.lua index 4b2049c..59284a9 100755 --- a/lua/plugins/plugins.lua +++ b/lua/plugins/plugins.lua @@ -57,8 +57,15 @@ return require'packer'.startup(function() } -- Null-LS - use'jose-elias-alvarez/null-ls.nvim' - + use({ + "jose-elias-alvarez/null-ls.nvim", + config = function() + require("null-ls").setup({ + debug = true, + }) + end, + requires = { "nvim-lua/plenary.nvim" }, +}) ------------------------------------------------------------ -- General Functionality ------------------------------------------------------------ @@ -171,29 +178,36 @@ use({ "iamcco/markdown-preview.nvim", run = "cd app && npm install", setup = fun use { 'folke/todo-comments.nvim', requires = "nvim-lua/plenary.nvim", - config = function() - require('todo-comments').setup({ - keywords = { - FIX = { - icon = " ", -- icon used for the sign, and in search results - color = "error", -- can be a hex color, or a named color (see below) - alt = { "FIXME", "BUG", "FIXIT", "ISSUE" }, -- a set of other keywords that all map to this FIX keywords - -- signs = false, -- configure signs for some keywords individually - }, - DONE = { icon = " ", color = "info" }, - FEAT = { icon = " ", color = "warning", alt = { "NEED", "REQUEST" } }, - WARN = { icon = " ", color = "warning", alt = { "WARNING", "ERROR" } }, - TASK = { icon = " ", color = "hint", alt = { "TODO", "TBD" } }, - NOTE = { icon = " ", color = "hint", alt = { "INFO" } }, - SENG = { icon = " ", color = "test", alt = { "SOLUTIONS", "SE", "WORKAROUND" } }, - }, - highlight = { - comments_only = false, - }, - }) - end + config = function() + require("todo-comments").setup { + keywords = { + FIX = { + icon = " ", -- icon used for the sign, and in search results + color = "error", -- can be a hex color, or a named color (see below) + alt = { "FIXME", "BUG", "FIXIT", "ISSUE" }, -- a set of other keywords that all map to this FIX keywords + -- signs = false, -- configure signs for some keywords individually + }, + DONE = { icon = " ", color = "info" }, + FEAT = { icon = " ", color = "warning", alt = { "NEED", "REQUEST" } }, + WARN = { icon = " ", color = "error", alt = { "WARNING", "ERROR" } }, + TASK = { icon = " ", color = "hint", alt = { "TODO", "TBD" } }, + NOTE = { icon = " ", color = "hint", alt = { "INFO" } }, + SENG = { icon = " ", color = "test", alt = { "SOLUTIONS", "SE", "WORKAROUND" } }, + }, + highlight = { + comments_only = false, + }, + colors = { + error = { "DiagnosticError", "ErrorMsg", "#DC2626" }, + warning = { "DiagnosticWarning", "WarningMsg", "#FBBF24" }, + info = { "DiagnosticInfo", "#2563EB" }, + hint = { "DiagnosticHint", "#10B981" }, + default = { "Identifier", "#7C3AED" }, + test = { "Identifier", "#FF00FF" } + }, + } + end } - -- The all famous telescope use { 'nvim-telescope/telescope.nvim', tag = '0.1.0', @@ -203,7 +217,6 @@ use({ "iamcco/markdown-preview.nvim", run = "cd app && npm install", setup = fun }) end } - use { "nvim-telescope/telescope-file-browser.nvim" } @@ -229,6 +242,8 @@ use({ "iamcco/markdown-preview.nvim", run = "cd app && npm install", setup = fun require('gitsigns').setup() end } + -- Plugin that causes your code to crumble >:) + use 'eandrju/cellular-automaton.nvim' -- The Dashboard use { diff --git a/lua/plugins/todo-comments.lua b/lua/plugins/todo-comments.lua new file mode 100644 index 0000000..fe8c730 --- /dev/null +++ b/lua/plugins/todo-comments.lua @@ -0,0 +1,29 @@ +local g = vim.g + +require('todo-comments').setup { + keywords = { + FIX = { + icon = " ", -- icon used for the sign, and in search results + color = "error", -- can be a hex color, or a named color (see below) + alt = { "FIXME", "BUG", "FIXIT", "ISSUE" }, -- a set of other keywords that all map to this FIX keywords + -- signs = false, -- configure signs for some keywords individually + }, + DONE = { icon = " ", color = "info" }, + FEAT = { icon = " ", color = "warning", alt = { "NEED", "REQUEST" } }, + WARN = { icon = " ", color = "error", alt = { "WARNING", "ERROR" } }, + TASK = { icon = " ", color = "hint", alt = { "TODO", "TBD" } }, + NOTE = { icon = " ", color = "hint", alt = { "INFO" } }, + SENG = { icon = " ", color = "test", alt = { "SOLUTIONS", "SE", "WORKAROUND" } }, + }, + highlight = { + comments_only = false, + }, + colors = { + error = { "DiagnosticError", "ErrorMsg", "#DC2626" }, + warning = { "DiagnosticWarning", "WarningMsg", "#FBBF24" }, + info = { "DiagnosticInfo", "#2563EB" }, + hint = { "DiagnosticHint", "#10B981" }, + default = { "Identifier", "#7C3AED" }, + test = { "Identifier", "#FF00FF" } + }, +} diff --git a/lua/settings/init.lua b/lua/settings/init.lua index cd3be53..a570b96 100755 --- a/lua/settings/init.lua +++ b/lua/settings/init.lua @@ -23,6 +23,8 @@ opt.shell = "/bin/zsh" opt.updatetime = 200 opt.cursorline = true g.markdown_folding = 1 +opt.spell=true +opt.spelllang = 'en_us' ----------------------------------------------------------- -- Neovim UI ----------------------------------------------------------- @@ -30,9 +32,9 @@ opt.number = true -- Show line number opt.relativenumber = true -- Show Current Line with Relative numbers above and below cursor. opt.showmatch = true -- Highlight matching parenthesis opt.foldmethod = 'syntax' -- Enable folding (default 'foldmarker') -opt.colorcolumn = '150' -- Line lenght marker at 80 columns +opt.colorcolumn = '150' -- Line length marker at 80 columns opt.splitright = true -- Vertical split to the right -opt.splitbelow = true -- Orizontal split to the bottom +opt.splitbelow = true -- Horizontal split to the bottom opt.ignorecase = true -- Ignore case letters when search opt.smartcase = true -- Ignore lowercase for the whole pattern opt.linebreak = true -- Wrap on word boundary diff --git a/plugin/packer_compiled.lua b/plugin/packer_compiled.lua index 6f2f0d5..e07fef4 100644 --- a/plugin/packer_compiled.lua +++ b/plugin/packer_compiled.lua @@ -90,6 +90,11 @@ _G.packer_plugins = { path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/catppuccin", url = "https://github.com/catppuccin/nvim" }, + ["cellular-automaton.nvim"] = { + loaded = true, + path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/cellular-automaton.nvim", + url = "https://github.com/eandrju/cellular-automaton.nvim" + }, ["cmp-buffer"] = { loaded = true, path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/cmp-buffer", @@ -201,6 +206,7 @@ _G.packer_plugins = { url = "https://github.com/karb94/neoscroll.nvim" }, ["null-ls.nvim"] = { + config = { "\27LJ\2\nC\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\1\ndebug\2\nsetup\fnull-ls\frequire\0" }, loaded = true, path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/null-ls.nvim", url = "https://github.com/jose-elias-alvarez/null-ls.nvim" @@ -295,7 +301,7 @@ _G.packer_plugins = { url = "https://github.com/aserowy/tmux.nvim" }, ["todo-comments.nvim"] = { - config = { "\27LJ\2\n\4\0\0\6\0\29\0%6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\25\0005\3\6\0005\4\3\0005\5\4\0=\5\5\4=\4\a\0035\4\b\0=\4\t\0035\4\n\0005\5\v\0=\5\5\4=\4\f\0035\4\r\0005\5\14\0=\5\5\4=\4\15\0035\4\16\0005\5\17\0=\5\5\4=\4\18\0035\4\19\0005\5\20\0=\5\5\4=\4\21\0035\4\22\0005\5\23\0=\5\5\4=\4\24\3=\3\26\0025\3\27\0=\3\28\2B\0\2\1K\0\1\0\14highlight\1\0\1\18comments_only\1\rkeywords\1\0\0\tSENG\1\4\0\0\14SOLUTIONS\aSE\15WORKAROUND\1\0\2\ncolor\ttest\ticon\t \tNOTE\1\2\0\0\tINFO\1\0\2\ncolor\thint\ticon\t \tTASK\1\3\0\0\tTODO\bTBD\1\0\2\ncolor\thint\ticon\t \tWARN\1\3\0\0\fWARNING\nERROR\1\0\2\ncolor\fwarning\ticon\t \tFEAT\1\3\0\0\tNEED\fREQUEST\1\0\2\ncolor\fwarning\ticon\t \tDONE\1\0\2\ticon\t \ncolor\tinfo\bFIX\1\0\0\balt\1\5\0\0\nFIXME\bBUG\nFIXIT\nISSUE\1\0\2\ncolor\nerror\ticon\t \nsetup\18todo-comments\frequire\0" }, + config = { "\27LJ\2\n\6\0\0\6\0+\00036\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\25\0005\3\6\0005\4\3\0005\5\4\0=\5\5\4=\4\a\0035\4\b\0=\4\t\0035\4\n\0005\5\v\0=\5\5\4=\4\f\0035\4\r\0005\5\14\0=\5\5\4=\4\15\0035\4\16\0005\5\17\0=\5\5\4=\4\18\0035\4\19\0005\5\20\0=\5\5\4=\4\21\0035\4\22\0005\5\23\0=\5\5\4=\4\24\3=\3\26\0025\3\27\0=\3\28\0025\3\30\0005\4\29\0=\4\31\0035\4 \0=\4!\0035\4\"\0=\4#\0035\4$\0=\4%\0035\4&\0=\4'\0035\4(\0=\4)\3=\3*\2B\0\2\1K\0\1\0\vcolors\ttest\1\3\0\0\15Identifier\f#FF00FF\fdefault\1\3\0\0\15Identifier\f#7C3AED\thint\1\3\0\0\19DiagnosticHint\f#10B981\tinfo\1\3\0\0\19DiagnosticInfo\f#2563EB\fwarning\1\4\0\0\22DiagnosticWarning\15WarningMsg\f#FBBF24\nerror\1\0\0\1\4\0\0\20DiagnosticError\rErrorMsg\f#DC2626\14highlight\1\0\1\18comments_only\1\rkeywords\1\0\0\tSENG\1\4\0\0\14SOLUTIONS\aSE\15WORKAROUND\1\0\2\ncolor\ttest\ticon\t \tNOTE\1\2\0\0\tINFO\1\0\2\ncolor\thint\ticon\t \tTASK\1\3\0\0\tTODO\bTBD\1\0\2\ncolor\thint\ticon\t \tWARN\1\3\0\0\fWARNING\nERROR\1\0\2\ncolor\nerror\ticon\t \tFEAT\1\3\0\0\tNEED\fREQUEST\1\0\2\ncolor\fwarning\ticon\t \tDONE\1\0\2\ncolor\tinfo\ticon\t \bFIX\1\0\0\balt\1\5\0\0\nFIXME\bBUG\nFIXIT\nISSUE\1\0\2\ncolor\nerror\ticon\t \nsetup\18todo-comments\frequire\0" }, loaded = true, path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/todo-comments.nvim", url = "https://github.com/folke/todo-comments.nvim" @@ -339,46 +345,50 @@ time([[Defining packer_plugins]], false) time([[Setup for markdown-preview.nvim]], true) try_loadstring("\27LJ\2\n=\0\0\2\0\4\0\0056\0\0\0009\0\1\0005\1\3\0=\1\2\0K\0\1\0\1\2\0\0\rmarkdown\19mkdp_filetypes\6g\bvim\0", "setup", "markdown-preview.nvim") time([[Setup for markdown-preview.nvim]], false) --- Config for: which-key.nvim -time([[Config for which-key.nvim]], true) -try_loadstring("\27LJ\2\n;\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\14which-key\frequire\0", "config", "which-key.nvim") -time([[Config for which-key.nvim]], false) --- Config for: trouble.nvim -time([[Config for trouble.nvim]], true) -try_loadstring("\27LJ\2\n9\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\ftrouble\frequire\0", "config", "trouble.nvim") -time([[Config for trouble.nvim]], false) --- Config for: nvim-mapper -time([[Config for nvim-mapper]], true) -try_loadstring("\27LJ\2\n=\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\16nvim-mapper\frequire\0", "config", "nvim-mapper") -time([[Config for nvim-mapper]], false) --- Config for: gitsigns.nvim -time([[Config for gitsigns.nvim]], true) -try_loadstring("\27LJ\2\n6\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\rgitsigns\frequire\0", "config", "gitsigns.nvim") -time([[Config for gitsigns.nvim]], false) -- Config for: nvim-autopairs time([[Config for nvim-autopairs]], true) try_loadstring("\27LJ\2\n@\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\19nvim-autopairs\frequire\0", "config", "nvim-autopairs") time([[Config for nvim-autopairs]], false) --- Config for: telescope.nvim -time([[Config for telescope.nvim]], true) -try_loadstring("\27LJ\2\n;\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\14telescope\frequire\0", "config", "telescope.nvim") -time([[Config for telescope.nvim]], false) --- Config for: mason.nvim -time([[Config for mason.nvim]], true) -try_loadstring("\27LJ\2\n3\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\nmason\frequire\0", "config", "mason.nvim") -time([[Config for mason.nvim]], false) --- Config for: todo-comments.nvim -time([[Config for todo-comments.nvim]], true) -try_loadstring("\27LJ\2\n\4\0\0\6\0\29\0%6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\25\0005\3\6\0005\4\3\0005\5\4\0=\5\5\4=\4\a\0035\4\b\0=\4\t\0035\4\n\0005\5\v\0=\5\5\4=\4\f\0035\4\r\0005\5\14\0=\5\5\4=\4\15\0035\4\16\0005\5\17\0=\5\5\4=\4\18\0035\4\19\0005\5\20\0=\5\5\4=\4\21\0035\4\22\0005\5\23\0=\5\5\4=\4\24\3=\3\26\0025\3\27\0=\3\28\2B\0\2\1K\0\1\0\14highlight\1\0\1\18comments_only\1\rkeywords\1\0\0\tSENG\1\4\0\0\14SOLUTIONS\aSE\15WORKAROUND\1\0\2\ncolor\ttest\ticon\t \tNOTE\1\2\0\0\tINFO\1\0\2\ncolor\thint\ticon\t \tTASK\1\3\0\0\tTODO\bTBD\1\0\2\ncolor\thint\ticon\t \tWARN\1\3\0\0\fWARNING\nERROR\1\0\2\ncolor\fwarning\ticon\t \tFEAT\1\3\0\0\tNEED\fREQUEST\1\0\2\ncolor\fwarning\ticon\t \tDONE\1\0\2\ticon\t \ncolor\tinfo\bFIX\1\0\0\balt\1\5\0\0\nFIXME\bBUG\nFIXIT\nISSUE\1\0\2\ncolor\nerror\ticon\t \nsetup\18todo-comments\frequire\0", "config", "todo-comments.nvim") -time([[Config for todo-comments.nvim]], false) -- Config for: tmux.nvim time([[Config for tmux.nvim]], true) try_loadstring("\27LJ\2\n2\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\ttmux\frequire\0", "config", "tmux.nvim") time([[Config for tmux.nvim]], false) +-- Config for: null-ls.nvim +time([[Config for null-ls.nvim]], true) +try_loadstring("\27LJ\2\nC\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\1\ndebug\2\nsetup\fnull-ls\frequire\0", "config", "null-ls.nvim") +time([[Config for null-ls.nvim]], false) +-- Config for: nvim-mapper +time([[Config for nvim-mapper]], true) +try_loadstring("\27LJ\2\n=\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\16nvim-mapper\frequire\0", "config", "nvim-mapper") +time([[Config for nvim-mapper]], false) +-- Config for: todo-comments.nvim +time([[Config for todo-comments.nvim]], true) +try_loadstring("\27LJ\2\n\6\0\0\6\0+\00036\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\25\0005\3\6\0005\4\3\0005\5\4\0=\5\5\4=\4\a\0035\4\b\0=\4\t\0035\4\n\0005\5\v\0=\5\5\4=\4\f\0035\4\r\0005\5\14\0=\5\5\4=\4\15\0035\4\16\0005\5\17\0=\5\5\4=\4\18\0035\4\19\0005\5\20\0=\5\5\4=\4\21\0035\4\22\0005\5\23\0=\5\5\4=\4\24\3=\3\26\0025\3\27\0=\3\28\0025\3\30\0005\4\29\0=\4\31\0035\4 \0=\4!\0035\4\"\0=\4#\0035\4$\0=\4%\0035\4&\0=\4'\0035\4(\0=\4)\3=\3*\2B\0\2\1K\0\1\0\vcolors\ttest\1\3\0\0\15Identifier\f#FF00FF\fdefault\1\3\0\0\15Identifier\f#7C3AED\thint\1\3\0\0\19DiagnosticHint\f#10B981\tinfo\1\3\0\0\19DiagnosticInfo\f#2563EB\fwarning\1\4\0\0\22DiagnosticWarning\15WarningMsg\f#FBBF24\nerror\1\0\0\1\4\0\0\20DiagnosticError\rErrorMsg\f#DC2626\14highlight\1\0\1\18comments_only\1\rkeywords\1\0\0\tSENG\1\4\0\0\14SOLUTIONS\aSE\15WORKAROUND\1\0\2\ncolor\ttest\ticon\t \tNOTE\1\2\0\0\tINFO\1\0\2\ncolor\thint\ticon\t \tTASK\1\3\0\0\tTODO\bTBD\1\0\2\ncolor\thint\ticon\t \tWARN\1\3\0\0\fWARNING\nERROR\1\0\2\ncolor\nerror\ticon\t \tFEAT\1\3\0\0\tNEED\fREQUEST\1\0\2\ncolor\fwarning\ticon\t \tDONE\1\0\2\ncolor\tinfo\ticon\t \bFIX\1\0\0\balt\1\5\0\0\nFIXME\bBUG\nFIXIT\nISSUE\1\0\2\ncolor\nerror\ticon\t \nsetup\18todo-comments\frequire\0", "config", "todo-comments.nvim") +time([[Config for todo-comments.nvim]], false) -- Config for: mkdnflow.nvim time([[Config for mkdnflow.nvim]], true) try_loadstring("\27LJ\2\n\2\0\0\6\0\23\0\0316\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\21\0005\3\5\0005\4\4\0005\5\3\0>\5\1\4=\4\6\0035\4\b\0005\5\a\0>\5\1\4=\4\t\0035\4\v\0005\5\n\0>\5\1\4=\4\f\0035\4\14\0005\5\r\0>\5\1\4=\4\15\0035\4\17\0005\5\16\0>\5\1\4=\4\18\0035\4\19\0=\4\20\3=\3\22\2B\0\2\1K\0\1\0\rmappings\1\0\0\19MkdnFollowLink\1\3\0\0\6n\14p\rMkdnSTab\1\3\0\0\0\f\1\2\0\0\6i\fMkdnTab\1\3\0\0\0\n\1\2\0\0\6i\14MkdnEnter\1\3\0\0\0\t\1\2\0\0\6n\20MkdnNewListItem\1\3\0\0\0\t\1\2\0\0\6i\19MkdnToggleToDo\1\0\1\22MkdnTableNextCell\1\1\3\0\0\0\14\1\3\0\0\6i\6n\nsetup\rmkdnflow\frequire\0", "config", "mkdnflow.nvim") time([[Config for mkdnflow.nvim]], false) +-- Config for: which-key.nvim +time([[Config for which-key.nvim]], true) +try_loadstring("\27LJ\2\n;\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\14which-key\frequire\0", "config", "which-key.nvim") +time([[Config for which-key.nvim]], false) +-- Config for: mason.nvim +time([[Config for mason.nvim]], true) +try_loadstring("\27LJ\2\n3\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\nmason\frequire\0", "config", "mason.nvim") +time([[Config for mason.nvim]], false) +-- Config for: trouble.nvim +time([[Config for trouble.nvim]], true) +try_loadstring("\27LJ\2\n9\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\ftrouble\frequire\0", "config", "trouble.nvim") +time([[Config for trouble.nvim]], false) +-- Config for: gitsigns.nvim +time([[Config for gitsigns.nvim]], true) +try_loadstring("\27LJ\2\n6\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\rgitsigns\frequire\0", "config", "gitsigns.nvim") +time([[Config for gitsigns.nvim]], false) +-- Config for: telescope.nvim +time([[Config for telescope.nvim]], true) +try_loadstring("\27LJ\2\n;\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\14telescope\frequire\0", "config", "telescope.nvim") +time([[Config for telescope.nvim]], false) vim.cmd [[augroup packer_load_aucmds]] vim.cmd [[au!]] -- Filetype lazy-loads diff --git a/spell/en.utf-8.add b/spell/en.utf-8.add new file mode 100644 index 0000000..c30051b --- /dev/null +++ b/spell/en.utf-8.add @@ -0,0 +1,32 @@ +recert +gravatar +TODO +gravatars +webhook +Neovim +accomplished +accomplished +Talkspace +Northpass +CEU +th +B2B +Integrations +NPP +CSV +BBHR +onboarding +Kai +scorms +QMC +trainings +cancelled +Ummey +Ummey's +prev +Kaitlyn +CYA +programmatically +Wistia +iOS +PPT diff --git a/spell/en.utf-8.add.spl b/spell/en.utf-8.add.spl new file mode 100644 index 0000000..cf2f2d1 Binary files /dev/null and b/spell/en.utf-8.add.spl differ