Compare commits
3 Commits
3282676557
...
3f520e222a
Author | SHA1 | Date | |
---|---|---|---|
3f520e222a | |||
6ec4e28ad6 | |||
48b5156c7f |
@ -28,6 +28,7 @@ opt.grepprg = 'rg --vimgrep --no-heading --smart-case --hidden'
|
||||
opt.grepformat = '%f:%l:%c:%m'
|
||||
|
||||
vim.api.nvim_create_user_command('Cd', 'lcd %:p:h', { nargs = 0 })
|
||||
vim.api.nvim_create_user_command('Grep', 'silent grep! <args> | TroubleToggle quickfix', { nargs = '+' })
|
||||
|
||||
local ignore_buftype = { 'quickfix', 'nofile', 'help' }
|
||||
local ignore_filetype = { 'gitcommit', 'gitrebase', 'svn', 'hgcommit' }
|
||||
@ -61,7 +62,7 @@ local function run()
|
||||
if win_last_line == buff_last_line then
|
||||
-- Set line to last line edited
|
||||
vim.cmd [[normal! g`"]]
|
||||
-- Try to center
|
||||
-- Try to center
|
||||
elseif buff_last_line - last_line > ((win_last_line - win_first_line) / 2) - 1 then
|
||||
vim.cmd [[normal! g`"zz]]
|
||||
else
|
||||
@ -74,5 +75,3 @@ vim.api.nvim_create_autocmd({ 'BufWinEnter', 'FileType' }, {
|
||||
group = vim.api.nvim_create_augroup('nvim-lastplace', {}),
|
||||
callback = run,
|
||||
})
|
||||
|
||||
vim.cmd("command! -nargs=+ Grep execute 'silent grep! <args>' | copen")
|
||||
|
@ -1,23 +0,0 @@
|
||||
return {
|
||||
'kevinhwang91/nvim-bqf',
|
||||
lazy = false,
|
||||
opts = {
|
||||
-- description = [[Give the window magic, when the window is splited horizontally, keep
|
||||
-- the distance between the current line and the top/bottom border of neovim unchanged.
|
||||
-- It's a bit like a floating window, but the window is indeed a normal window, without
|
||||
-- any floating attributes.]],
|
||||
magic_window = true,
|
||||
preview = {
|
||||
auto_preview = true,
|
||||
show_title = true,
|
||||
show_scroll_bar = true,
|
||||
winblend = 12,
|
||||
wrap = false,
|
||||
buf_label = true,
|
||||
},
|
||||
func_map = {
|
||||
openc = '<CR>',
|
||||
open = 'o',
|
||||
}
|
||||
}
|
||||
}
|
@ -99,7 +99,7 @@ return {
|
||||
},
|
||||
}
|
||||
cmp.setup.cmdline(':', {
|
||||
completion = { autocomplete = { 'TextChanged' } },
|
||||
completion = { autocomplete = { 'TextChanged', 'CmdlineChanged', 'TextChanged' } },
|
||||
mapping = cmp.mapping.preset.cmdline(),
|
||||
sources = {
|
||||
{ name = 'cmdline' },
|
||||
@ -109,20 +109,20 @@ return {
|
||||
-- },
|
||||
})
|
||||
|
||||
cmp.setup.cmdline('/', {
|
||||
sources = {
|
||||
{ name = 'buffer' },
|
||||
},
|
||||
-- view = {
|
||||
-- entries = { name = 'wildmenu', separator = ' · ' },
|
||||
-- },
|
||||
})
|
||||
-- cmp.setup.cmdline('/', {
|
||||
-- sources = {
|
||||
-- { name = 'buffer' },
|
||||
-- },
|
||||
-- view = {
|
||||
-- entries = { name = 'wildmenu', separator = ' · ' },
|
||||
-- },
|
||||
-- })
|
||||
|
||||
cmp.setup.filetype({ 'dap-repl', 'dapui_watches', 'dapui_hover' }, {
|
||||
sources = {
|
||||
{ name = 'dap' },
|
||||
},
|
||||
})
|
||||
-- cmp.setup.filetype({ 'dap-repl', 'dapui_watches', 'dapui_hover' }, {
|
||||
-- sources = {
|
||||
-- { name = 'dap' },
|
||||
-- },
|
||||
-- })
|
||||
|
||||
local npairs = require 'nvim-autopairs'
|
||||
npairs.setup {
|
||||
@ -140,4 +140,3 @@ return {
|
||||
cmp.event:on('confirm_done', cmp_autopairs.on_confirm_done {})
|
||||
end,
|
||||
}
|
||||
|
||||
|
54
lua/plugins/trouble.lua
Normal file
54
lua/plugins/trouble.lua
Normal file
@ -0,0 +1,54 @@
|
||||
return {
|
||||
"folke/trouble.nvim",
|
||||
cmd = { 'Trouble', 'TroubleToggle' },
|
||||
dependencies = { "nvim-tree/nvim-web-devicons" },
|
||||
opts = {
|
||||
position = "bottom", -- position of the list can be: bottom, top, left, right
|
||||
height = 10, -- height of the trouble list when position is top or bottom
|
||||
width = 50, -- width of the list when position is left or right
|
||||
icons = true, -- use devicons for filenames
|
||||
mode = "workspace_diagnostics", -- "workspace_diagnostics", "document_diagnostics", "quickfix", "lsp_references", "loclist"
|
||||
severity = nil, -- nil (ALL) or vim.diagnostic.severity.ERROR | WARN | INFO | HINT
|
||||
fold_open = "", -- icon used for open folds
|
||||
fold_closed = "", -- icon used for closed folds
|
||||
group = true, -- group results by file
|
||||
padding = true, -- add an extra new line on top of the list
|
||||
action_keys = { -- key mappings for actions in the trouble list
|
||||
-- map to {} to remove a mapping, for example:
|
||||
-- close = {},
|
||||
close = "q", -- close the list
|
||||
cancel = "<esc>", -- cancel the preview and get back to your last window / buffer / cursor
|
||||
refresh = "r", -- manually refresh
|
||||
jump = { "<cr>", "<tab>" }, -- jump to the diagnostic or open / close folds
|
||||
open_split = { "<c-x>" }, -- open buffer in new split
|
||||
open_vsplit = { "<c-v>" }, -- open buffer in new vsplit
|
||||
open_tab = { "<c-t>" }, -- open buffer in new tab
|
||||
jump_close = { "o" }, -- jump to the diagnostic and close the list
|
||||
toggle_mode = "m", -- toggle between "workspace" and "document" diagnostics mode
|
||||
switch_severity = "s", -- switch "diagnostics" severity filter level to HINT / INFO / WARN / ERROR
|
||||
toggle_preview = "P", -- toggle auto_preview
|
||||
hover = "K", -- opens a small popup with the full multiline message
|
||||
preview = "p", -- preview the diagnostic location
|
||||
close_folds = { "zM", "zm" }, -- close all folds
|
||||
open_folds = { "zR", "zr" }, -- open all folds
|
||||
toggle_fold = { "zA", "za" }, -- toggle fold of current file
|
||||
previous = "k", -- previous item
|
||||
next = "j" -- next item
|
||||
},
|
||||
indent_lines = true, -- add an indent guide below the fold icons
|
||||
auto_open = false, -- automatically open the list when you have diagnostics
|
||||
auto_close = false, -- automatically close the list when you have no diagnostics
|
||||
auto_preview = false, -- automatically preview the location of the diagnostic. <esc> to close preview and go back to last window
|
||||
auto_fold = false, -- automatically fold a file trouble list at creation
|
||||
auto_jump = { "lsp_definitions" }, -- for the given modes, automatically jump if there is only a single result
|
||||
signs = {
|
||||
-- icons / text used for a diagnostic
|
||||
error = "",
|
||||
warning = "",
|
||||
hint = "",
|
||||
information = "",
|
||||
other = "",
|
||||
},
|
||||
use_diagnostic_signs = false -- enabling this will use the signs defined in your lsp client
|
||||
},
|
||||
}
|
Loading…
Reference in New Issue
Block a user