diff options
| author | Alec Goncharow <alec@goncharow.dev> | 2024-01-09 14:28:13 -0500 |
|---|---|---|
| committer | Alec Goncharow <alec@goncharow.dev> | 2024-01-09 14:28:13 -0500 |
| commit | 36b5ac02b91ffc4d6901c5031b0f73b57e334f70 (patch) | |
| tree | c6488da4e48d376da28579ce40a57321cc15cadb /.config/nvim/lua/lspsaga_conf.lua | |
| parent | 67d40a9139547bb61fe3aacb54491b6e40a3cab8 (diff) | |
yak shaving
much to do about nothing, outlines from lspsage, some matching, some
tpope plugins, flailing sql things
might be too bloated but let's try it
Diffstat (limited to '.config/nvim/lua/lspsaga_conf.lua')
| -rw-r--r-- | .config/nvim/lua/lspsaga_conf.lua | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.config/nvim/lua/lspsaga_conf.lua b/.config/nvim/lua/lspsaga_conf.lua new file mode 100644 index 0000000..dabd040 --- /dev/null +++ b/.config/nvim/lua/lspsaga_conf.lua @@ -0,0 +1,19 @@ +vim.g.matchup_matchparen_offscreen = { method = {} } + +require('lspsaga').setup({ + outline = { + win_position = 'right', + auto_preview = true, + detail = true, + auto_close = true, + close_after_jump = true, + layout = 'float', + keys = { + toggle_or_jump = '<cr>', + quit = 'q', + jump = 'e', + }, + }, +}) + +Nmap('<c-d>', ':Lspsaga outline<CR>') |
