Various Plugins and Settings
This commit is contained in:
@ -105,7 +105,7 @@ M(
|
|||||||
)
|
)
|
||||||
|
|
||||||
M(
|
M(
|
||||||
'n', '<leader>ce', ":TodoTrouble keywords=TODO<CR> | resize +10<CR>",
|
'n', '<leader>ce', ":TodoTrouble keywords=TODO,FEAT<CR> | resize +10<CR>",
|
||||||
{silent=true, noremap=true},
|
{silent=true, noremap=true},
|
||||||
"Show Todos",
|
"Show Todos",
|
||||||
"todo_trouble_todo",
|
"todo_trouble_todo",
|
||||||
@ -127,3 +127,19 @@ M(
|
|||||||
"todo_trouble_todo",
|
"todo_trouble_todo",
|
||||||
"Show Errors from Folke's Todo Comments Plugin."
|
"Show Errors from Folke's Todo Comments Plugin."
|
||||||
)
|
)
|
||||||
|
|
||||||
|
M(
|
||||||
|
'n', '<leader>b', ":! black %<CR>",
|
||||||
|
{silent=true, noremap=true},
|
||||||
|
"Black Cwf",
|
||||||
|
"black_current_file",
|
||||||
|
"Use Black Formatting on Current File."
|
||||||
|
)
|
||||||
|
|
||||||
|
M(
|
||||||
|
'n', '<leader>m', ":! markdownlint -f %<CR>",
|
||||||
|
{silent=true, noremap=true},
|
||||||
|
"Black Cwf",
|
||||||
|
"black_current_file",
|
||||||
|
"Use Black Formatting on Current File."
|
||||||
|
)
|
||||||
|
|||||||
@ -14,8 +14,9 @@ null_ls.setup({
|
|||||||
sources = {
|
sources = {
|
||||||
null_ls.builtins.completion.spell,
|
null_ls.builtins.completion.spell,
|
||||||
null_ls.builtins.diagnostics.codespell,
|
null_ls.builtins.diagnostics.codespell,
|
||||||
null_ls.builtins.diagnostics.markdownlint.with({ extra_args = { "--disable MD013" }}),
|
null_ls.builtins.diagnostics.markdownlint.with({ extra_args = { "--disable", "MD013", "--" }
|
||||||
null_ls.builtins.diagnostics.pycodestyle,
|
,}),
|
||||||
|
null_ls.builtins.diagnostics.pycodestyle.with({ extra_args = { "--max-line-length=150" }}),
|
||||||
null_ls.builtins.formatting.black.with({ extra_args = { "--fast" }}),
|
null_ls.builtins.formatting.black.with({ extra_args = { "--fast" }}),
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|||||||
@ -1,44 +1,20 @@
|
|||||||
local g = vim.g
|
local g = vim.g
|
||||||
|
|
||||||
--local fb_actions = require "telescope".extensions.file_browser.actions
|
local fb_actions = require "telescope".extensions.file_browser.actions
|
||||||
|
|
||||||
local telescope_installer = require('telescope').setup({
|
local telescope_installer = require('telescope').setup({
|
||||||
defaults = {
|
|
||||||
-- Default configuration for telescope goes here:
|
|
||||||
previewer = true,
|
|
||||||
file_previewer = require'telescope.previewers'.vim_buffer_cat.new,
|
|
||||||
-- config_key = value,
|
|
||||||
mappings = {
|
|
||||||
i = {
|
|
||||||
["<C-h>"] = "which_key"
|
|
||||||
-- map actions.which_key to <C-h> (default: <C-/>)
|
|
||||||
-- actions.which_key shows the mappings for your picker,
|
|
||||||
-- e.g. git_{create, delete, ...}_branch for the git_branches picker
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
pickers = {
|
|
||||||
find_files = {
|
|
||||||
theme = "dropdown",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
extensions = {
|
extensions = {
|
||||||
--[[ file_browser = {
|
file_browser = {
|
||||||
theme = "dropdown",
|
|
||||||
-- disables netrw and use telescope-file-browser in its place
|
|
||||||
hijack_netrw = true,
|
|
||||||
mappings = {
|
mappings = {
|
||||||
["i"] = {
|
["i"] = {
|
||||||
|
["<C-c>"] = fb_actions.create
|
||||||
},
|
},
|
||||||
["n"] = {
|
["n"] = {
|
||||||
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
--]]
|
|
||||||
},
|
},
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
||||||
require("telescope").load_extension "file_browser"
|
require("telescope").load_extension "file_browser"
|
||||||
|
|||||||
@ -11,7 +11,7 @@ require('todo-comments').setup {
|
|||||||
DONE = { icon = " ", color = "info" },
|
DONE = { icon = " ", color = "info" },
|
||||||
FEAT = { icon = " ", color = "warning", alt = { "NEED", "REQUEST" } },
|
FEAT = { icon = " ", color = "warning", alt = { "NEED", "REQUEST" } },
|
||||||
WARN = { icon = " ", color = "error", alt = { "WARNING", "ERROR" } },
|
WARN = { icon = " ", color = "error", alt = { "WARNING", "ERROR" } },
|
||||||
TASK = { icon = " ", color = "hint", alt = { "TODO", "TBD" } },
|
TODO = { icon = " ", color = "test", alt = { "TASK", "TBD" } },
|
||||||
NOTE = { icon = " ", color = "hint", alt = { "INFO" } },
|
NOTE = { icon = " ", color = "hint", alt = { "INFO" } },
|
||||||
SENG = { icon = " ", color = "test", alt = { "SOLUTIONS", "SE", "WORKAROUND" } },
|
SENG = { icon = " ", color = "test", alt = { "SOLUTIONS", "SE", "WORKAROUND" } },
|
||||||
},
|
},
|
||||||
@ -20,10 +20,10 @@ require('todo-comments').setup {
|
|||||||
},
|
},
|
||||||
colors = {
|
colors = {
|
||||||
error = { "DiagnosticError", "ErrorMsg", "#DC2626" },
|
error = { "DiagnosticError", "ErrorMsg", "#DC2626" },
|
||||||
warning = { "DiagnosticWarning", "WarningMsg", "#FBBF24" },
|
warning = { "DiagnosticWarning", "WarningMsg", "#ffba08" },
|
||||||
info = { "DiagnosticInfo", "#2563EB" },
|
info = { "DiagnosticInfo", "#05eb42" },
|
||||||
hint = { "DiagnosticHint", "#10B981" },
|
hint = { "DiagnosticHint", "#ff12d7" },
|
||||||
default = { "Identifier", "#7C3AED" },
|
default = { "Identifier", "#711fff" },
|
||||||
test = { "Identifier", "#FF00FF" }
|
test = { "Identifier", "#FF00FF" }
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@ -25,6 +25,7 @@ opt.cursorline = true
|
|||||||
g.markdown_folding = 1
|
g.markdown_folding = 1
|
||||||
opt.spell=true
|
opt.spell=true
|
||||||
opt.spelllang = 'en_us'
|
opt.spelllang = 'en_us'
|
||||||
|
cmd [[ autocmd FileType md autocmd BufWritePre * :%s/\s\+$//e ]]
|
||||||
-----------------------------------------------------------
|
-----------------------------------------------------------
|
||||||
-- Neovim UI
|
-- Neovim UI
|
||||||
-----------------------------------------------------------
|
-----------------------------------------------------------
|
||||||
@ -47,7 +48,6 @@ opt.hidden = true -- Enable background buffers
|
|||||||
opt.history = 100 -- Remember N lines in history
|
opt.history = 100 -- Remember N lines in history
|
||||||
opt.lazyredraw = true -- Faster scrolling
|
opt.lazyredraw = true -- Faster scrolling
|
||||||
opt.synmaxcol = 240 -- Max column for syntax highlight
|
opt.synmaxcol = 240 -- Max column for syntax highlight
|
||||||
|
|
||||||
-----------------------------------------------------------
|
-----------------------------------------------------------
|
||||||
-- Colorscheme
|
-- Colorscheme
|
||||||
-----------------------------------------------------------
|
-----------------------------------------------------------
|
||||||
@ -57,8 +57,8 @@ cmd [[colorscheme catppuccin-macchiato]]
|
|||||||
-- Tabs, indent
|
-- Tabs, indent
|
||||||
-----------------------------------------------------------
|
-----------------------------------------------------------
|
||||||
opt.expandtab = true -- Use spaces instead of tabs
|
opt.expandtab = true -- Use spaces instead of tabs
|
||||||
opt.shiftwidth = 4 -- Shift 4 spaces when tab
|
opt.shiftwidth = 2 -- Shift 4 spaces when tab
|
||||||
opt.tabstop = 4 -- 1 tab == 4 spaces
|
opt.tabstop = 8 -- 1 tab == 4 spaces
|
||||||
opt.smartindent = true -- Autoindent new lines
|
opt.smartindent = true -- Autoindent new lines
|
||||||
-----------------------------------------------------------
|
-----------------------------------------------------------
|
||||||
-- Glow Settings
|
-- Glow Settings
|
||||||
@ -73,7 +73,7 @@ g.glow_style = 'dark'
|
|||||||
-----------------------------------------------------------
|
-----------------------------------------------------------
|
||||||
-- 2 spaces for selected filetypes
|
-- 2 spaces for selected filetypes
|
||||||
cmd [[
|
cmd [[
|
||||||
autocmd FileType md,liquid,xml,html,xhtml,css,scss,javascript,lua,yaml setlocal shiftwidth=2 tabstop=2
|
autocmd FileType md,liquid,xml,html,xhtml,css,scss,javascript,lua,yaml setlocal shiftwidth=2 tabstop=8 noexpandtab
|
||||||
]]
|
]]
|
||||||
|
|
||||||
local disabled_built_ins = {
|
local disabled_built_ins = {
|
||||||
|
|||||||
@ -345,6 +345,22 @@ time([[Defining packer_plugins]], false)
|
|||||||
time([[Setup for markdown-preview.nvim]], true)
|
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")
|
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)
|
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: 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: 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: nvim-autopairs
|
-- Config for: nvim-autopairs
|
||||||
time([[Config for nvim-autopairs]], true)
|
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")
|
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")
|
||||||
@ -357,38 +373,22 @@ time([[Config for tmux.nvim]], false)
|
|||||||
time([[Config for null-ls.nvim]], true)
|
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")
|
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)
|
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<EFBFBD>\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
|
-- Config for: mkdnflow.nvim
|
||||||
time([[Config for mkdnflow.nvim]], true)
|
time([[Config for mkdnflow.nvim]], true)
|
||||||
try_loadstring("\27LJ\2\n<EFBFBD>\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\14<leader>p\rMkdnSTab\1\3\0\0\0\f<S-Tab>\1\2\0\0\6i\fMkdnTab\1\3\0\0\0\n<Tab>\1\2\0\0\6i\14MkdnEnter\1\3\0\0\0\t<CR>\1\2\0\0\6n\20MkdnNewListItem\1\3\0\0\0\t<CR>\1\2\0\0\6i\19MkdnToggleToDo\1\0\1\22MkdnTableNextCell\1\1\3\0\0\0\14<C-Space>\1\3\0\0\6i\6n\nsetup\rmkdnflow\frequire\0", "config", "mkdnflow.nvim")
|
try_loadstring("\27LJ\2\n<EFBFBD>\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\14<leader>p\rMkdnSTab\1\3\0\0\0\f<S-Tab>\1\2\0\0\6i\fMkdnTab\1\3\0\0\0\n<Tab>\1\2\0\0\6i\14MkdnEnter\1\3\0\0\0\t<CR>\1\2\0\0\6n\20MkdnNewListItem\1\3\0\0\0\t<CR>\1\2\0\0\6i\19MkdnToggleToDo\1\0\1\22MkdnTableNextCell\1\1\3\0\0\0\14<C-Space>\1\3\0\0\6i\6n\nsetup\rmkdnflow\frequire\0", "config", "mkdnflow.nvim")
|
||||||
time([[Config for mkdnflow.nvim]], false)
|
time([[Config for mkdnflow.nvim]], false)
|
||||||
-- Config for: which-key.nvim
|
-- Config for: todo-comments.nvim
|
||||||
time([[Config for which-key.nvim]], true)
|
time([[Config for todo-comments.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")
|
try_loadstring("\27LJ\2\n<EFBFBD>\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 which-key.nvim]], false)
|
time([[Config for todo-comments.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
|
-- Config for: gitsigns.nvim
|
||||||
time([[Config for gitsigns.nvim]], true)
|
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")
|
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)
|
time([[Config for gitsigns.nvim]], false)
|
||||||
-- Config for: telescope.nvim
|
-- Config for: nvim-mapper
|
||||||
time([[Config for telescope.nvim]], true)
|
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\14telescope\frequire\0", "config", "telescope.nvim")
|
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 telescope.nvim]], false)
|
time([[Config for nvim-mapper]], false)
|
||||||
vim.cmd [[augroup packer_load_aucmds]]
|
vim.cmd [[augroup packer_load_aucmds]]
|
||||||
vim.cmd [[au!]]
|
vim.cmd [[au!]]
|
||||||
-- Filetype lazy-loads
|
-- Filetype lazy-loads
|
||||||
|
|||||||
@ -30,3 +30,87 @@ programmatically
|
|||||||
Wistia
|
Wistia
|
||||||
iOS
|
iOS
|
||||||
PPT
|
PPT
|
||||||
|
Kaitlyn's
|
||||||
|
OneTrust
|
||||||
|
JS
|
||||||
|
Analytics
|
||||||
|
KPI
|
||||||
|
param
|
||||||
|
UUID
|
||||||
|
Pipedrive
|
||||||
|
pipedrive
|
||||||
|
Lukasz
|
||||||
|
Bjorn
|
||||||
|
webhooks
|
||||||
|
trackable
|
||||||
|
Pipedrive's
|
||||||
|
boolean
|
||||||
|
Kaisa
|
||||||
|
SSO
|
||||||
|
XP
|
||||||
|
DW
|
||||||
|
Chołodecki
|
||||||
|
Łukasz
|
||||||
|
Kotkas
|
||||||
|
Patrycja
|
||||||
|
Q1
|
||||||
|
Vidyard
|
||||||
|
badging
|
||||||
|
Flink
|
||||||
|
S3
|
||||||
|
Unclickable
|
||||||
|
DataDog
|
||||||
|
wistia
|
||||||
|
https
|
||||||
|
https
|
||||||
|
wifi
|
||||||
|
autoplaying
|
||||||
|
tbd
|
||||||
|
G2
|
||||||
|
SMEs
|
||||||
|
CSM
|
||||||
|
AEs
|
||||||
|
ZoomInfo's
|
||||||
|
linkedin
|
||||||
|
Enablement
|
||||||
|
enablement
|
||||||
|
DIY
|
||||||
|
Zoominfo
|
||||||
|
G2M
|
||||||
|
Carli
|
||||||
|
LevelJump
|
||||||
|
LMS
|
||||||
|
CMS
|
||||||
|
Lessonly
|
||||||
|
Katlin
|
||||||
|
nd
|
||||||
|
LT
|
||||||
|
EVP's
|
||||||
|
UX
|
||||||
|
Schoology
|
||||||
|
Pendo
|
||||||
|
Salesforce
|
||||||
|
ILTs
|
||||||
|
SFDC
|
||||||
|
ROI
|
||||||
|
NPS
|
||||||
|
roadmap
|
||||||
|
BigIdeasMath
|
||||||
|
Hubspot
|
||||||
|
analytics
|
||||||
|
SCORM
|
||||||
|
AWS
|
||||||
|
JnJ
|
||||||
|
DSAR
|
||||||
|
ons
|
||||||
|
Zapier
|
||||||
|
Accredible
|
||||||
|
LPs
|
||||||
|
Shopify
|
||||||
|
Callum
|
||||||
|
Chek
|
||||||
|
Chek
|
||||||
|
Chek
|
||||||
|
Chek
|
||||||
|
Chek
|
||||||
|
Chek
|
||||||
|
|||||||
Binary file not shown.
Reference in New Issue
Block a user