Testing a push

This commit is contained in:
Norm Rasmussen
2023-01-24 15:20:37 -05:00
parent 22aa9ed0fc
commit c7c81b6525
6 changed files with 63 additions and 67 deletions

View File

@ -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."
)

View 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

View File

@ -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',