removed cmake tools and mini surround
This commit is contained in:
@@ -1,35 +0,0 @@
|
||||
return {
|
||||
'Civitasv/cmake-tools.nvim',
|
||||
opts = {
|
||||
cmake_command = 'cmake',
|
||||
cmake_generate_options = { '-D', 'CMAKE_EXPORT_COMPILE_COMMANDS=1', '-G', 'Ninja' },
|
||||
cmake_show_console = 'always',
|
||||
cmake_build_directory = 'build_nvim',
|
||||
cmake_dap_configuration = { name = 'cpp', type = 'codelldb', request = 'launch' }, -- dap configuration, optional
|
||||
},
|
||||
cmd = {
|
||||
'CMakeGenerate',
|
||||
'CMakeBuild',
|
||||
'CMakeRun',
|
||||
'CMakeDebug',
|
||||
'CMakeSelectBuildType',
|
||||
'CMakeSelectBuildTarget',
|
||||
'CMakeSelectLaunchTarget',
|
||||
'CMakeSelectKit',
|
||||
'CMakeSelectConfigurePreset',
|
||||
'CMakeSelectBuildPreset',
|
||||
'CMakeSelectLaunchTarget',
|
||||
'CMakeOpen',
|
||||
'CMakeClose',
|
||||
'CMakeInstall',
|
||||
'CMakeClean',
|
||||
'CMakeStop',
|
||||
},
|
||||
keys = {
|
||||
{
|
||||
'<S-F6>',
|
||||
function() require('cmake-tools').debug({}) end,
|
||||
desc = 'Run and debug target from cmake',
|
||||
},
|
||||
},
|
||||
}
|
||||
@@ -1,20 +0,0 @@
|
||||
return {
|
||||
'echasnovski/mini.surround',
|
||||
version = '*',
|
||||
config = function()
|
||||
require('mini.surround').setup({
|
||||
mappings = {
|
||||
add = '<leader>aa', -- Add surrounding in Normal and Visual modes
|
||||
delete = '<leader>ad', -- Delete surrounding
|
||||
find = '<leader>af', -- Find surrounding (to the right)
|
||||
find_left = '<leader>aF', -- Find surrounding (to the left)
|
||||
highlight = '<leader>ah', -- Highlight surrounding
|
||||
replace = '<leader>ar', -- Replace surrounding
|
||||
update_n_lines = '<leader>an', -- Update `n_lines`
|
||||
|
||||
suffix_last = 'l', -- Suffix to search with "prev" method
|
||||
suffix_next = 'n', -- Suffix to search with "next" method
|
||||
},
|
||||
})
|
||||
end,
|
||||
}
|
||||
Reference in New Issue
Block a user