This commit is contained in:
2025-12-17 11:52:56 +02:00
parent be1834b690
commit c38936dcdd
9 changed files with 55 additions and 20 deletions

View File

@@ -5,6 +5,7 @@ status is-login; and abbr H Hyprland
abbr m mkdir
abbr o open
abbr t trash put
abbr b bat -p
# abbr m mpv
abbr ma -- mpv --profile=anime .
abbr mm -- mpv --profile=music --shuffle \$XDG_MUSIC_DIR

View File

@@ -18,7 +18,7 @@ set -gx CARGO_HOME $XDG_DATA_HOME/cargo
set -gx CLIPPY_CONF_DIR $XDG_DATA_HOME/cargo/
# Can't use '~' in universal variables
set -gx fish_user_paths ~/.local/bin $CARGO_HOME/bin
set -gx fish_user_paths ~/.local/bin $CARGO_HOME/bin $GOPATH/bin
# -agx is a bad idea as login shell itself also does it
# set -gx WINEPATH /usr/x86_64-w64-mingw32/bin

View File

@@ -103,6 +103,8 @@ S-tab = "insert_tab"
C-space = "signature_help"
C-backspace = "delete_word_backward"
A-o = "open_below"
A-O = "open_above"
A-e = "move_parent_node_end"
A-b = "move_parent_node_start"
@@ -138,6 +140,7 @@ S-tab = "shrink_selection"
L = "goto_next_buffer"
H = "goto_previous_buffer"
C-l = "@:e<space><C-r>%<ret>:bc<ret>:<up><up><ret>" # move buffer to the end
C-g = ":reset-diff-change"
# C-k = "jump_view_up"
# C-h = "jump_view_left"
@@ -167,6 +170,7 @@ S-tab = "shrink_selection"
L = "goto_next_buffer"
H = "goto_previous_buffer"
C-l = "@:e<space><C-r>%<ret>:bc<ret>:<up><up><ret>" # move buffer to the end
C-g = ":reset-diff-change"
# C-q = "wclose"
# C-k = "jump_view_up"
@@ -183,7 +187,13 @@ A-k = [
"paste_before",
]
# A-J = ["extend_to_line_bounds", "yank", "paste_after"]
A-K = ["extend_to_line_bounds", "yank", "paste_after"]
A-K = [
"save_selection",
"extend_to_line_bounds",
"yank",
"paste_before",
"jump_backward",
]
[keys.normal.space]
'.' = ":config-reload"

View File

@@ -23,21 +23,22 @@ name = "markdown"
unresolved_diagnostics = true
include_md_extension_md_link = true # [File](file.md) or [File](file)
[[language]]
name = "sql"
auto-format = false
formatter = { command = "sqlformat", args = [
"--keywords",
"upper", # "upper", "lower", "capitalize"
"--identifiers",
"upper",
# "--reindent",
"--indent_width",
"2",
# "--indent_columns",
# "--compact", "True",
"-",
] }
# Hate it
# [[language]]
# name = "sql"
# auto-format = false
# formatter = { command = "sqlformat", args = [
# # "--keywords",
# # "upper", # "upper", "lower", "capitalize"
# # "--identifiers",
# # "lower",
# # "--reindent",
# "--indent_width",
# "2",
# # "--indent_columns",
# # "--compact", "True",
# "-",
# ] }
[[language]]

View File

@@ -1,4 +1,4 @@
ipc = off # battery!
splash = false
preload = ~/.walls/wall4
wallpaper =, ~/.walls/wall4
preload = ~/.walls/wall3
wallpaper =, ~/.walls/wall3

View File

@@ -161,6 +161,25 @@ device {
sensitivity = 0.5
}
device {
name = corne-keyboard
kb_layout =
kb_variant =
kb_options =
# kb_model =
# kb_rules =
}
device {
name = zmk-project-corne-keyboard
kb_layout =
kb_variant =
kb_options =
# kb_model =
# kb_rules =
}
device {
name = at-translated-set-2-keyboard # Ctrl, AltGr, Win, Space, AltR, Ctrl; Shift+Shift for CAPS
kb_options = altwin:swap_lalt_lwin, grp:win_space_toggle, grp_led:caps, shift:both_capslock_cancel

View File

@@ -0,0 +1,3 @@
[updates]
auto_update = true
auto_update_interval_hours = 240

1
.gitignore vendored
View File

@@ -25,6 +25,7 @@
!.config/fish/
!.config/paru/
!.config/htop/
!.config/tealdeer/
!.config/yazi/
.config/yazi/*/

View File

@@ -17,8 +17,8 @@ codegen-backend = "cranelift"
codegen-backend = true
[profile.dev.package."*"]
debug = false
opt-level = 3
debug = false
[profile.debugging]
inherits = "dev"