diff options
Diffstat (limited to '.config')
-rw-r--r-- | .config/newsboat/config | 1 | ||||
-rw-r--r-- | .config/nvim/lua/config/bindings.lua | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/.config/newsboat/config b/.config/newsboat/config index e17a4ce..99452c1 100644 --- a/.config/newsboat/config +++ b/.config/newsboat/config @@ -8,6 +8,7 @@ text-width 80 show-keymap-hint no show-title-bar no swap-title-and-hints no +history-limit 0 ignore-mode download notify-program ~/.local/bin/newsboat-notif notify-always yes diff --git a/.config/nvim/lua/config/bindings.lua b/.config/nvim/lua/config/bindings.lua index 6ddb52a..6b3b38e 100644 --- a/.config/nvim/lua/config/bindings.lua +++ b/.config/nvim/lua/config/bindings.lua @@ -65,7 +65,7 @@ vim.keymap.set('n', '<leader>vu', ':Lazy sync', { noremap = true, silent = true vim.keymap.set('n', '<leader>vv', vim.cmd.Ex, { noremap = true, silent = true }) -- lsp vim.keymap.set('n', '<leader>rr', fzf.lsp_references, { noremap = true, silent = true }) -vim.keymap.set('n', '<leader>re', fzf.lsp_definitions, { noremap = true, silent = true }) +vim.keymap.set('n', '<leader>rw', fzf.lsp_definitions, { noremap = true, silent = true }) vim.keymap.set('n', '<leader>ri', fzf.lsp_implementations, { noremap = true, silent = true }) vim.keymap.set('n', '<leader>rt', fzf.lsp_typedefs, { noremap = true, silent = true }) -vim.keymap.set('n', '<leader>rd', fzf.lsp_document_symbols, { noremap = true, silent = true }) +vim.keymap.set('n', '<leader>re', fzf.lsp_document_symbols, { noremap = true, silent = true }) |