From 288ec0a25d37ae0ce9d2494bb3866b7cc6b4cc5b Mon Sep 17 00:00:00 2001 From: Jake Koroman Date: Sun, 18 Jan 2026 09:52:51 -0500 Subject: add more kak configs. --- .bash_profile | 2 +- MANIFEST | 2 ++ kak/colors/plain.kak | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ kak/kakrc | 13 ++++++++++++- 4 files changed, 66 insertions(+), 2 deletions(-) create mode 100644 kak/colors/plain.kak 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" diff --git a/MANIFEST b/MANIFEST index e018460..eeeb761 100644 --- a/MANIFEST +++ b/MANIFEST @@ -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 diff --git a/kak/kakrc b/kak/kakrc index d01bd85..097da1e 100644 --- a/kak/kakrc +++ b/kak/kakrc @@ -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 -- cgit v1.2.3