local function map(mode, lhs, rhs, opts) local options = { noremap=true, silent=true } if opts then options = vim.tbl_extend('force', options, opts) end vim.api.nvim_set_keymap(mode, lhs, rhs, options) end map("n", "", ":NvimTreeToggle") map("n", "", ":NvimTreeFindFileToggle") map("n", "", ":Buffers") map("n", "", ":Outline") -- map("n", "e", ":CocList diagnostics") map("n", "", ":Telescope find_files") map("n", "s", ":Telescope live_grep glob_pattern=*.{ts,html,c,cc,cpp,h,go,json,py,sh,lua,vim,rs,txt}") map("n", "sc", ":noh") -- map("n", "gs", ":call CocAction('jumpDefinition', 'split')") -- map("n", "gt", ":CocCommand clangd.switchSourceHeader") -- map("n", "p", "lua require('goto-preview').goto_preview_definition()", {noremap=true}) map("n", "q", "lua require('goto-preview').close_all_win()", {noremap=true}) map("n", "r", "lua require('goto-preview').goto_preview_references()", {noremap=true}) map("n", "1", "1gt") map("n", "2", "2gt") map("n", "3", "3gt") map("n", "4", "4gt") map("n", "5", "5gt") map("n", "6", "6gt") map("n", "7", "7gt") map("n", "8", "8gt") map("n", "9", "9gt") map("n", "0", ":tablast") map("n", "", ":call vimspector#ToggleBreakpoint( input( \"Enter condition: \" ) )") -- map("", "", "") -- map("", "", "") -- map("", "", "") -- map("", "", "") -- -- map("i", "", "") -- map("i", "", "") map("n", "c", ":bo 15split +term") map("n", "t", ":TodoTelescope theme=ivy") map("t", "", "") map("n", "", ":m .+1==") map("n", "", ":m .-2==") map("i", "", ":m .+1==gi") map("i", "", ":m .-2==gi") map("v", "", ":m '>+1gv=gv") map("v", "", ":m '<-2gv=gv") map('n', 'p', 'BufferPick', opts) map('n', 'd', 'BufferPickDelete', opts) map('n', 'g', ':DiffviewOpen')