diff options
| author | Jake Koroman <jake@jakekoroman.com> | 2026-05-03 10:37:41 -0400 |
|---|---|---|
| committer | Jake Koroman <jake@jakekoroman.com> | 2026-05-03 10:37:41 -0400 |
| commit | be002f4d0294f706a4a43925caea84379670f93b (patch) | |
| tree | ee1cf77bbf3046e19f3c9b1602c05a8513fdcb63 /kak | |
| parent | c1a8b42fa8b439250b92efad483dc5a014dec164 (diff) | |
added sway. a whole bunch of changes.
Diffstat (limited to 'kak')
| -rw-r--r-- | kak/colors/plain.kak | 4 | ||||
| -rw-r--r-- | kak/kakrc | 15 |
2 files changed, 15 insertions, 4 deletions
diff --git a/kak/colors/plain.kak b/kak/colors/plain.kak index 9d75874..1cf9b12 100644 --- a/kak/colors/plain.kak +++ b/kak/colors/plain.kak @@ -35,9 +35,9 @@ face global SecondaryCursorEol default face global LineNumbers default face global LineNumberCursor default face global MenuForeground black,green -face global MenuBackground green,black +face global MenuBackground green,white face global MenuInfo default -face global Information green,black +face global Information green,white face global Error default face global DiagnosticError default face global DiagnosticWarning default @@ -19,6 +19,14 @@ hook global ModuleLoaded x11 %{ set global termcmd 'st -e sh -c' } +hook global ModuleLoaded wayland %{ + set global termcmd 'foot -e sh -c' +} + +hook global ModuleLoaded tmux %{ + set global windowing_placement 'horizontal' +} + hook global BufWritePre .* %{ jrk-trim-trailing-whitespace } @@ -47,8 +55,11 @@ define-command jrk-trim-trailing-whitespace %{ try %{ execute-keys -draft "%%s\h+$<ret>d" } } -map -docstring 'yank to system clipboard' global user y '<a-|>xclip -selection clipboard<ret>' -map -docstring 'paste from system clipboard' global user p '<!>xclip -selection clipboard -o<ret>' +# map -docstring 'yank to system clipboard' global user y '<a-|>xclip -selection clipboard<ret>' +# map -docstring 'paste from system clipboard' global user p '<!>xclip -selection clipboard -o<ret>' + +map -docstring 'yank to system clipboard' global user y '<a-|>wl-copy<ret>' +map -docstring 'paste from system clipboard' global user p '<!>wl-paste<ret>' map -docstring 'goto next make error' global user [ '<:>make-next-error<ret>' map -docstring 'goto previous make error' global user ] '<:>make-previous-error<ret>' |
