Compare commits

..

12 Commits

Author SHA1 Message Date
6034323fb9 lazygit-use-zsh: trick lazygit to use zsh instead of bash 2026-07-17 23:08:57 +02:00
6e82a49ba6 shell: add aliases for ash shell 2026-07-17 23:08:48 +02:00
4719e8d355 kakoune: use editorconfig; lazygit: disable auto fetch 2026-07-17 23:08:41 +02:00
2d79c5728a kakoune: fix for busybox awk: use middle dot unicode character instead of unicode escape for nbsp 2026-07-17 23:08:35 +02:00
7c91379f6c kakoune: add kak-tree-sitter config for odin 2026-07-17 23:08:25 +02:00
f7a7f031ff kakoune: add kak-tree-sitter config for gotmpl
modify file
~/.local/share/kak-tree-sitter/queries/gotmpl/7275b7f85014aad7e15d4987ec4f2249572eecfb/injections.scm
adding:
((text) @injection.content
 (#set! injection.language "html")
 (#set! injection.combined))
2026-07-17 23:08:20 +02:00
994e3b4662 kakoune: add kak-tree-sitter config for templ 2026-07-17 23:08:13 +02:00
6a5f15c86b kakoune: use kak-tree-sitter, update five-colors themes 2026-07-17 23:08:08 +02:00
61b6984dca lupan-set-theme: now works with busybox readlink 2026-07-17 23:08:00 +02:00
fdc95f72e3 kakoune: keys to comment block and line 2026-07-17 23:07:50 +02:00
f375076fe1 waybar: restart on theme change 2026-07-17 23:07:43 +02:00
ac18f6be8b mango config with waybar 2026-07-17 23:07:18 +02:00
6 changed files with 15 additions and 0 deletions

View File

@@ -10,6 +10,8 @@ hook global WinCreate .* %{
hook global BufCreate .*\.templ %{ set buffer filetype templ }
hook global BufCreate .*\.html.tmpl %{ set buffer filetype gotmpl }
hook global WinCreate ^[^*]+$ %{editorconfig-load}
# LOCAL
nop %sh{

View File

@@ -0,0 +1 @@
/bin/zsh

2
lazygit-use-zsh/bin/lazygit Executable file
View File

@@ -0,0 +1,2 @@
#!/bin/sh
PATH="$PATH:$HOME/.config/lazygit/bin" exec /usr/bin/lazygit "$@"

View File

@@ -11,3 +11,6 @@ gui:
theme:
selectedLineBgColor:
- reverse
git:
autoFetch: false

5
shell/.ashrc Normal file
View File

@@ -0,0 +1,5 @@
alias k=kak
alias kc='kak -c "$(kak -l | fzf)"'
alias kd='kak -s "$(printf %s $PWD | xargs basename)"'
alias lg=lazygit
alias z='cd $(fzf --walker dir --walker-root ~)'

View File

@@ -38,6 +38,8 @@ fi
export GOPATH=~/.cache/go
export GOBIN=~/.local/bin
export ENV=~/.ashrc
# start X or Hyprland at login
if [ -z "$DISPLAY" -a -z "$WAYLAND_DISPLAY" -a "$(tty)" = /dev/tty1 ]; then
if which /usr/bin/sx > /dev/null; then