move some keymaps to the corresponding plugin configs
This commit is contained in:
parent
e111deabc9
commit
bce0373dfb
@ -1,3 +1,13 @@
|
|||||||
require('Comment').setup({
|
require('Comment').setup({
|
||||||
mappings = false,
|
mappings = false,
|
||||||
})
|
})
|
||||||
|
require('legendary').keymap(
|
||||||
|
{
|
||||||
|
'<c-c>',
|
||||||
|
{
|
||||||
|
n = '<Plug>(comment_toggle_linewise_current)',
|
||||||
|
v = '<Plug>(comment_toggle_linewise_visual)gv'
|
||||||
|
},
|
||||||
|
description = 'Toggle comment'
|
||||||
|
}
|
||||||
|
)
|
||||||
|
@ -1,94 +1,36 @@
|
|||||||
require('legendary').setup({
|
require('legendary').setup({
|
||||||
|
default_opts = {
|
||||||
|
keymaps = { silent = true },
|
||||||
|
commands = {},
|
||||||
|
autocmds = {},
|
||||||
|
},
|
||||||
keymaps = {
|
keymaps = {
|
||||||
{
|
{
|
||||||
'<Leader>p',
|
'<Leader>p',
|
||||||
':Legendary keymaps<CR>',
|
function()
|
||||||
|
require("legendary").find()
|
||||||
|
end,
|
||||||
description = 'legendary keymaps',
|
description = 'legendary keymaps',
|
||||||
mode = { 'n', 'x', 'i' }
|
mode = { 'n', 'x', 'i' }
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'F2',
|
'<F2>',
|
||||||
'<CMD>tabnew .<CR>',
|
':tabnew .<CR>',
|
||||||
description = 'Open a new tab',
|
description = 'Open a new tab',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'<C-F2>',
|
'<C-F2>',
|
||||||
'<CMD>vsplit .<CR>',
|
':vsplit .<CR>',
|
||||||
description = 'Open a new vertical split',
|
description = 'Open a new vertical split',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'<S-F2>',
|
'<S-F2>',
|
||||||
'<CMD>split .<CR>',
|
':split .<CR>',
|
||||||
description = 'Open a new horizontal split',
|
description = 'Open a new horizontal split',
|
||||||
},
|
},
|
||||||
{
|
|
||||||
'<leader>n',
|
|
||||||
'<CMD>Neogen<CR>',
|
|
||||||
description = 'Add comment',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'<space>p',
|
|
||||||
'<CMD>Telescope projects<CR>',
|
|
||||||
description = 'Select project',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'<leader>f',
|
|
||||||
'<CMD>lua require("telescope.builtin").find_files({no_ignore=true})<CR>',
|
|
||||||
description = 'Find file',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'<leader>g',
|
|
||||||
'<CMD>lua project_files()<CR>',
|
|
||||||
description = 'Find git files',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'<leader>o',
|
|
||||||
'<CMD>Telescope oldfiles<CR>',
|
|
||||||
description = 'Find old files',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'<leader>h',
|
|
||||||
'<CMD>Telescope command_history<CR>',
|
|
||||||
description = 'Open command history',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'<leader>b',
|
|
||||||
'<CMD>Telescope buffers<CR>',
|
|
||||||
description = 'Select buffer',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'<leader>q',
|
|
||||||
'<CMD>Telescope quickfix<CR>',
|
|
||||||
description = 'Quickfix list with telescope',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'<leader>l',
|
|
||||||
'<CMD>Telescope live_grep<CR>',
|
|
||||||
description = 'Search in project',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'<C-y>',
|
|
||||||
'<CMD>Telescope neoclip<CR>',
|
|
||||||
description = 'Open clipboard history',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'<leader>j',
|
|
||||||
'<CMD>Telescope jumplist<CR>',
|
|
||||||
description = 'Open jumplist',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'<c-f>',
|
|
||||||
'<CMD>Telescope current_buffer_fuzzy_find<CR>',
|
|
||||||
description = 'Find in buffer',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'<leader>d',
|
|
||||||
'<CMD>Telescope grep_string<CR>',
|
|
||||||
description = 'Find in workspace',
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
'<Space>g',
|
'<Space>g',
|
||||||
'<CMD>lua _lazygit_toggle()<CR>',
|
':lua _lazygit_toggle()<CR>',
|
||||||
description = 'Open lazygit',
|
description = 'Open lazygit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -111,64 +53,56 @@ require('legendary').setup({
|
|||||||
'<Plug>(YankyCycleBackward)',
|
'<Plug>(YankyCycleBackward)',
|
||||||
description = 'Yanky cycle backward',
|
description = 'Yanky cycle backward',
|
||||||
},
|
},
|
||||||
{
|
|
||||||
'<c-c>',
|
|
||||||
{
|
|
||||||
n = '<Plug>(comment_toggle_linewise_current)',
|
|
||||||
v = '<Plug>(comment_toggle_linewise_visual)gv'
|
|
||||||
},
|
|
||||||
description = 'Toggle comment'
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
'<leader>s',
|
'<leader>s',
|
||||||
'<CMD>AerialToggle<CR>',
|
':AerialToggle<CR>',
|
||||||
description = 'Symbols outline',
|
description = 'Symbols outline',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
commands =
|
commands =
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
'<CMD>Octo pr list<CR>',
|
':Octo pr list<CR>',
|
||||||
description = 'Github list PRs',
|
description = 'Github list PRs',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'<CMD>Octo pr checkout<CR>',
|
':Octo pr checkout<CR>',
|
||||||
description = 'Github checkout PR',
|
description = 'Github checkout PR',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'<CMD>Octo pr browser<CR>',
|
':Octo pr browser<CR>',
|
||||||
description = 'Github open PR in browser',
|
description = 'Github open PR in browser',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'<CMD>set guifont=JetBrainsMonoNL\\ NF:h12<CR>',
|
':set guifont=JetBrainsMonoNL\\ NF:h12<CR>',
|
||||||
description = 'Big font size',
|
description = 'Big font size',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'<CMD>set guifont=JetBrainsMonoNL\\ NF:h9<CR>',
|
':set guifont=JetBrainsMonoNL\\ NF:h9<CR>',
|
||||||
description = 'Reset font size',
|
description = 'Reset font size',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'<CMD>CMake build_all<CR>',
|
':CMake build_all<CR>',
|
||||||
description = 'CMake build all',
|
description = 'CMake build all',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'<CMD>CMake configure<CR>',
|
':CMake configure<CR>',
|
||||||
description = 'CMake configure',
|
description = 'CMake configure',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'<CMD>CMake select_target<CR>',
|
':CMake select_target<CR>',
|
||||||
description = 'CMake select target',
|
description = 'CMake select target',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'<CMD>CMake clear_cache<CR>',
|
':CMake clear_cache<CR>',
|
||||||
description = 'CMake clear cache',
|
description = 'CMake clear cache',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'<CMD>LuaSnipListAvailable<CR>',
|
':LuaSnipListAvailable<CR>',
|
||||||
description = 'List snippets',
|
description = 'List snippets',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"<CMD>lua require('telescope.builtin').live_grep({ prompt_title = 'find string in open buffers...', grep_open_files = true })<CR>",
|
":lua require('telescope.builtin').live_grep({ prompt_title = 'find string in open buffers...', grep_open_files = true })<CR>",
|
||||||
description = 'Search in open files',
|
description = 'Search in open files',
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -1,20 +1,29 @@
|
|||||||
require('neogen').setup({
|
require('neogen').setup({
|
||||||
enabled = true,
|
enabled = true,
|
||||||
languages = {
|
languages = {
|
||||||
cpp = {
|
cpp = {
|
||||||
template = {
|
template = {
|
||||||
annotation_convention = 'custom',
|
annotation_convention = 'custom',
|
||||||
custom = {
|
custom = {
|
||||||
{ nil, '/// file', { no_results = true, type = { 'file' } } },
|
{ nil, '/// file', { no_results = true, type = { 'file' } } },
|
||||||
{ nil, '/// $1', { no_results = true, type = { 'func', 'file' } } },
|
{ nil, '/// $1', { no_results = true, type = { 'func', 'file' } } },
|
||||||
{ nil, '', { no_results = true, type = { 'file' } } },
|
{ nil, '', { no_results = true, type = { 'file' } } },
|
||||||
|
|
||||||
{ nil, '/// $1', { type = { 'func' } } },
|
{ nil, '/// $1', { type = { 'func' } } },
|
||||||
{ 'tparam', '/// \\tparam %s $1' },
|
{ 'tparam', '/// \\tparam %s $1' },
|
||||||
{ 'parameters', '/// \\param %s $1' },
|
{ 'parameters', '/// \\param %s $1' },
|
||||||
{ 'return_statement', '/// \\return $1' },
|
{ 'return_statement', '/// \\return $1' },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
require('legendary').keymaps(
|
||||||
|
{
|
||||||
|
{
|
||||||
|
'<leader>n',
|
||||||
|
':Neogen<CR>',
|
||||||
|
description = 'Add comment',
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
@ -53,3 +53,74 @@ require('telescope').setup({
|
|||||||
})
|
})
|
||||||
|
|
||||||
require('telescope').load_extension('fzf')
|
require('telescope').load_extension('fzf')
|
||||||
|
|
||||||
|
Project_files = function()
|
||||||
|
local opts = {} -- define here if you want to define something
|
||||||
|
local ok = pcall(require "telescope.builtin".git_files, opts)
|
||||||
|
if not ok then require "telescope.builtin".find_files(opts) end
|
||||||
|
end
|
||||||
|
|
||||||
|
require('legendary').keymaps(
|
||||||
|
{
|
||||||
|
{
|
||||||
|
'<space>p',
|
||||||
|
':Telescope projects<CR>',
|
||||||
|
description = 'Select project',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'<leader>f',
|
||||||
|
':lua require("telescope.builtin").find_files({no_ignore=true})<CR>',
|
||||||
|
description = 'Find file',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'<leader>g',
|
||||||
|
':lua Project_files()<CR>',
|
||||||
|
description = 'Find git files',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'<leader>o',
|
||||||
|
':Telescope oldfiles<CR>',
|
||||||
|
description = 'Find old files',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'<leader>h',
|
||||||
|
':Telescope command_history<CR>',
|
||||||
|
description = 'Open command history',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'<leader>b',
|
||||||
|
':Telescope buffers<CR>',
|
||||||
|
description = 'Select buffer',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'<leader>q',
|
||||||
|
':Telescope quickfix<CR>',
|
||||||
|
description = 'Quickfix list with telescope',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'<leader>l',
|
||||||
|
':Telescope live_grep<CR>',
|
||||||
|
description = 'Search in project',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'<C-y>',
|
||||||
|
':Telescope neoclip<CR>',
|
||||||
|
description = 'Open clipboard history',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'<leader>j',
|
||||||
|
':Telescope jumplist<CR>',
|
||||||
|
description = 'Open jumplist',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'<c-f>',
|
||||||
|
':Telescope current_buffer_fuzzy_find<CR>',
|
||||||
|
description = 'Find in buffer',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'<leader>d',
|
||||||
|
':Telescope grep_string<CR>',
|
||||||
|
description = 'Find in workspace',
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user