Testing a push
This commit is contained in:
@ -89,7 +89,7 @@ M(
|
||||
'n', '<C-f>', "@f<CR>",
|
||||
{silent=true, noremap=true},
|
||||
"Todo Comments",
|
||||
"todo_feat",
|
||||
"add_feat",
|
||||
"Add Feature Request tag to the beginning of the line. "
|
||||
)
|
||||
|
||||
@ -97,7 +97,7 @@ M(
|
||||
'n', '<C-x>', "@c<CR>",
|
||||
{silent=true, noremap=true},
|
||||
"Todo Comments",
|
||||
"todo_complete",
|
||||
"add_complete",
|
||||
"Replace tag with Complete tag at beginning of the line."
|
||||
)
|
||||
|
||||
@ -105,32 +105,32 @@ M(
|
||||
'n', '<C-w>', "@w<CR>",
|
||||
{silent=true, noremap=true},
|
||||
"Todo Comments",
|
||||
"todo_error",
|
||||
"add_error",
|
||||
"Add Warning/Error tag at the beginning of the line."
|
||||
)
|
||||
|
||||
M(
|
||||
'n', '<leader>ce', ":TodoTrouble keywords=TODO,FEAT<CR> | resize +10<CR>",
|
||||
'n', '<leader>ce', ":TodoTrouble keywords=TODO<CR> | :resize +10<CR>",
|
||||
{silent=true, noremap=true},
|
||||
"Show Todos",
|
||||
"todo_trouble_todo",
|
||||
"Show Todos from Folke's Todo Comments Plugin."
|
||||
"show_todos",
|
||||
"Show Todo Tags."
|
||||
)
|
||||
|
||||
M(
|
||||
'n', '<leader>cf', ":TodoTrouble keywords=FEAT<CR>",
|
||||
{silent=true, noremap=true},
|
||||
"Show Todos",
|
||||
"todo_trouble_todo",
|
||||
"Show Feature Requests from Folke's Todo Comments Plugin."
|
||||
"show_features",
|
||||
"Show Feature Requests."
|
||||
)
|
||||
|
||||
M(
|
||||
'n', '<leader>cq', ":TodoTrouble keywords=ERROR, WARN<CR>",
|
||||
{silent=true, noremap=true},
|
||||
"Show Todos",
|
||||
"todo_trouble_todo",
|
||||
"Show Errors from Folke's Todo Comments Plugin."
|
||||
"show_warnings",
|
||||
"Show Errors Tags."
|
||||
)
|
||||
|
||||
M(
|
||||
@ -140,11 +140,3 @@ M(
|
||||
"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."
|
||||
)
|
||||
|
||||
@ -93,7 +93,7 @@ end
|
||||
-- Use a loop to conveniently call 'setup' on multiple servers and
|
||||
-- map buffer local keybindings when the language server attaches.
|
||||
-- Add your language server below:
|
||||
local servers = { 'bashls', 'pyright', 'clangd', 'html', 'cssls', 'tsserver'}
|
||||
local servers = { 'bashls', 'pyright', 'clangd', 'html', 'cssls', 'tsserver', 'theme_check'}
|
||||
|
||||
-- Call setup
|
||||
for _, lsp in ipairs(servers) do
|
||||
|
||||
@ -246,7 +246,6 @@ use({ "iamcco/markdown-preview.nvim", run = "cd app && npm install", setup = fun
|
||||
use 'Mofiqul/dracula.nvim'
|
||||
use 'lunarvim/colorschemes'
|
||||
use { 'rose-pine/neovim', as = 'rose-pine' }
|
||||
use 'folke/tokyonight.nvim'
|
||||
use { "catppuccin/nvim", as = "catppuccin" }
|
||||
use {
|
||||
'feline-nvim/feline.nvim',
|
||||
|
||||
Reference in New Issue
Block a user