update kitty conf

This commit is contained in:
Gabriel Brown
2026-07-17 15:41:03 -04:00
parent 2dc9676822
commit 67033f2a31
3 changed files with 217 additions and 18 deletions
+9
View File
@@ -0,0 +1,9 @@
# Open plain file paths with neovim in a new kitty tab
protocol file
mime text/*
action launch --type=tab nvim -- "$FILE_PATH"
# Also handle paths with line/column numbers if supported by the source
protocol file
fragment_matches ^(\d+)(?::(\d+))?$
action launch --type=tab nvim "+call cursor($1, ${2:-1})" -- "$FILE_PATH"