- commit
- 96792f2
- parent
- e1009cf
- author
- Eric Bower
- date
- 2026-01-08 16:42:49 -0500 EST
chore(kak): cleanup
1 files changed,
+2,
-5
+2,
-5
1@@ -2,6 +2,7 @@ colorscheme tomorrow-night
2
3 set-option global grepcmd 'rg -n'
4 set-option global tabstop 2
5+set-option global indentwidth 0
6 set-option global ui_options terminal_assistant=none # disable clippy
7 set-option global scrolloff 3,3
8
9@@ -18,8 +19,8 @@ hook global NormalKey y|d|c %{ # use osc 52 for yank
10 hook global WinCreate .* %{
11 addhl window/ column 100 default,rgb:404040
12 }
13-# add-highlighter global/ wrap
14 add-highlighter global/ show-matching
15+# add-highlighter global/ wrap
16
17 eval %sh{kak-lsp}
18 hook global WinSetOption filetype=(python|go|javascript|typescript) %{
19@@ -30,11 +31,7 @@ set-option global modelinefmt "%opt{lsp_modeline} %opt{modelinefmt}"
20 map global user l ':enter-user-mode lsp<ret>' -docstring 'LSP mode'
21 map global user h <esc>:lsp-hover<ret> -docstring 'LSP hover'
22
23-#map global goto d <esc>:lsp-definition<ret> -docstring 'LSP definition'
24-#map global goto r <esc>:lsp-references<ret> -docstring 'LSP references'
25-
26 map global object a '<a-semicolon>lsp-object<ret>' -docstring 'LSP any symbol'
27-map global object <a-a> '<a-semicolon>lsp-object<ret>' -docstring 'LSP any symbol'
28 map global object f '<a-semicolon>lsp-object Function Method<ret>' -docstring 'LSP function or method'
29 map global object t '<a-semicolon>lsp-object Class Interface Module Namespace Struct<ret>' -docstring 'LSP class or module'
30 map global object d '<a-semicolon>lsp-diagnostic-object error warning<ret>' -docstring 'LSP errors and warnings'