Compare commits

..

3 Commits

10 changed files with 51 additions and 16 deletions

3
.gitmodules vendored
View File

@ -4,6 +4,3 @@
[submodule "alacritty-theme"]
path = alacritty-theme
url = git@github.com:alacritty/alacritty-theme
[submodule "yazi/flavors"]
path = yazi/flavors
url = https://github.com/yazi-rs/flavors.git

View File

@ -47,10 +47,6 @@ mimeapps = { source = "mimeapps.list", target = ".config/mimeapps.list" }
# navi
navi = { source = "navi", target = ".config/navi" }
# yazi
yazi_flavors = { source = "yazi/flavors", target = ".config/yazi/flavors", ignore = [ "*.md", "scripts", "LICENSE", "*.json", "*.yaml", ".git", ".github", ".gitignore" ] }
yazi_theme = { source = "yazi/theme.toml", target = ".config/yazi/theme.toml" }
# zellij
zellij = { source = "zellij", target = ".config/zellij" }

View File

@ -3,4 +3,3 @@ alacritty_theme = "Catppuccin-Macchiato"
helix_theme = "catppuccin_mocha"
zellij_theme = "catppuccin-macchiato"
bat_theme = "Catppuccin Mocha"
yazi_flavor = "catppuccin-mocha"

View File

@ -28,3 +28,42 @@ _ = { n = ":set whitespace.render none", a = ":set whitespace.render all" }
[keys.normal.space]
i = ":toggle lsp.display-inlay-hints"
# Git integration with lazygit
[keys.normal]
C-g = [
":write-all",
":insert-output lazygit >/dev/tty",
":redraw",
":reload-all"
]
# File explorer with yazi
[keys.normal.space]
e = [
":sh rm -f /tmp/unique-file-c5140c67",
":insert-output yazi '%{buffer_name}' --chooser-file=/tmp/unique-file-c5140c67",
":insert-output echo \"x1b[?1049h\" > /dev/tty",
":open %sh{cat /tmp/unique-file-c5140c67}",
":redraw",
":set mouse false",
":set mouse true",
]
E = [
":sh rm -f /tmp/unique-file-bea21125",
":insert-output yazi '%{workspace_directory}' --chooser-file=/tmp/unique-file-bea21125",
":insert-output echo \"x1b[?1049h\" > /dev/tty",
":open %sh{cat /tmp/unique-file-bea21125}",
":redraw",
":set mouse false",
":set mouse true",
]
# Search and replace with scooter
[keys.normal]
C-r = [
":write-all",
":insert-output scooter >/dev/tty",
":redraw",
":reload-all"
]

View File

@ -3,4 +3,3 @@ alacritty_theme = "Catppuccin-Latte"
helix_theme = "catppuccin_latte"
zellij_theme = "catppuccin-latte"
bat_theme = "Catppuccin Latte"
yazi_flavor = "catppuccin-latte"

Submodule yazi/flavors deleted from 68326b4ca4

View File

@ -1,3 +0,0 @@
[flavor]
dark = "{{yazi_flavor}}"
light = "{{yazi_flavor}}"

View File

@ -5,7 +5,7 @@ keybinds {
// bind "Alt c" { Copy; }
}
locked {
bind "Ctrl g" { SwitchToMode "Normal"; }
bind "Alt g" { SwitchToMode "Normal"; }
}
resize {
bind "Ctrl n" { SwitchToMode "Normal"; }

9
zsh.d/resume.zsh Normal file
View File

@ -0,0 +1,9 @@
# Allow Ctrl-z to toggle between suspend and resume
function Resume {
fg
zle push-input
BUFFER=""
zle accept-line
}
zle -N Resume
bindkey "^Z" Resume

View File

@ -1,5 +1,5 @@
export DOCKER_HOST="unix://$XDG_RUNTIME_DIR/docker.sock"
export DOCKER_SOCKET="$XDG_RUNTIME_DIR/docker.sock"
# export DOCKER_HOST="unix://$XDG_RUNTIME_DIR/docker.sock"
# export DOCKER_SOCKET="$XDG_RUNTIME_DIR/docker.sock"
export EDITOR="helix"
export FINDER="sk"
export GPG_TTY=$(tty)