diff options
| -rw-r--r-- | .bash_profile | 2 | ||||
| -rw-r--r-- | MANIFEST | 2 | ||||
| -rw-r--r-- | kak/colors/plain.kak | 51 | ||||
| -rw-r--r-- | kak/kakrc | 13 |
4 files changed, 66 insertions, 2 deletions
diff --git a/.bash_profile b/.bash_profile index b8ca6d7..7fa8e8d 100644 --- a/.bash_profile +++ b/.bash_profile @@ -4,7 +4,7 @@ if [ -f ~/.profile ]; then source ~/.profile; fi export SUDO="doas" -export TERMINAL="st" +export TERMINAL="alacritty" export BROWSER="librewolf" export EDITOR="nvim" export XDG_CONFIG_HOME="$HOME/.config" @@ -16,3 +16,5 @@ picom|.config mpd|.config ncmpcpp|.config mutt|.config +kak|.config +alacritty|.config diff --git a/kak/colors/plain.kak b/kak/colors/plain.kak new file mode 100644 index 0000000..389dd46 --- /dev/null +++ b/kak/colors/plain.kak @@ -0,0 +1,51 @@ + +# Kakoune simple colors, mostly default + +# For default +face global value default +face global type default +face global identifier default +face global string green +face global keyword default +face global operator default +face global attribute default +face global comment blue +face global documentation comment +face global meta default +face global builtin default + + +# For default +face global title default +face global header default +face global mono default +face global block default +face global link blue +face global bullet default +face global list default + +# builtin default +face global Default default,default +face global PrimarySelection white,blue +face global SecondarySelection black,blue +face global PrimaryCursor white,red +face global SecondaryCursor white,blue +face global PrimaryCursorEol white,red +face global SecondaryCursorEol default +face global LineNumbers default +face global LineNumberCursor default +face global MenuForeground white,green +face global MenuBackground green,white +face global MenuInfo default +face global Information green,white +face global Error default +face global DiagnosticError default +face global DiagnosticWarning default +face global StatusLine default +face global StatusLineMode default +face global StatusLineInfo default +face global StatusLineValue default +face global StatusCursor default+r +face global Prompt default +face global MatchingChar default +face global BufferPadding default @@ -1,10 +1,21 @@ -colorscheme desertex +colorscheme plain set-option global ui_options terminal_status_on_top=true set-option -add global ui_options terminal_assistant=clippy set-option global tabstop 4 set-option global indentwidth 4 set-option global scrolloff 3,3 +define-command testcmd %{ + prompt -file-completion 'What is your name? ' %{ + evaluate-commands %sh{ + echo "Hello, $kak_text!" > /tmp/vars + env >> /tmp/vars + title=$(dmenu -p 'say something: ') + printf "info '%s' -title '%s'" "wrote to file /tmp/vars" "$title" + } + } +} + add-highlighter global/ number-lines -hlcursor -relative # colemak dh binds |
