This commit is contained in:
Miguel Palhas
2025-11-20 08:19:01 +00:00
parent b46e05fd71
commit f4df2ab6eb
3 changed files with 73 additions and 24 deletions
+4 -1
View File
@@ -1,7 +1,7 @@
{ {
"permissions": { "permissions": {
"allow": [ "allow": [
"Bash(kitten @ set-tab-title:*)", "Bash(kitty @ set-tab-title:*)",
"Bash(mkdir:*)", "Bash(mkdir:*)",
"Bash(rg:*)", "Bash(rg:*)",
"Bash(chmod:*)", "Bash(chmod:*)",
@@ -22,5 +22,8 @@
"feedbackSurveyState": { "feedbackSurveyState": {
"lastShownTime": 1754052643456 "lastShownTime": 1754052643456
}, },
"hooks": {
"onReady": "printf '\\a'"
},
"$schema": "https://json.schemastore.org/claude-code-settings.json" "$schema": "https://json.schemastore.org/claude-code-settings.json"
} }
+4
View File
@@ -39,6 +39,9 @@
editor = "nvim"; editor = "nvim";
pager = "delta"; pager = "delta";
}; };
merge = {
conflictstyle = "zdiff3";
};
commit = { commit = {
template = "~/.config/git/commit-message.txt"; template = "~/.config/git/commit-message.txt";
}; };
@@ -47,6 +50,7 @@
}; };
delta = { delta = {
navigate = true; navigate = true;
side-by-side = true;
}; };
"diff \"image\"" = { "diff \"image\"" = {
textconv = "mediainfo"; textconv = "mediainfo";
+65 -23
View File
@@ -4,12 +4,11 @@
enable = true; enable = true;
settings = { settings = {
confirm_os_window_close = 0; confirm_os_window_close = 0;
enable_audio_bell = false;
cursor_trail = 1; cursor_trail = 1;
copy_on_select = true; copy_on_select = true;
background_opacity = 0.9; background_opacity = 0.9;
enabled_layouts = "tall, grid, fat, splits"; enabled_layouts = "tall, grid, fat, splits, stack";
# font # font
font_family = "FiraCode Nerd Font Mono"; font_family = "FiraCode Nerd Font Mono";
@@ -31,6 +30,9 @@
# remove control # remove control
allow_remote_control = true; allow_remote_control = true;
listen_on = "unix:/tmp/kitty.sock"; listen_on = "unix:/tmp/kitty.sock";
enable_audio_bell = false;
bell_on_tab = true;
}; };
keybindings = { keybindings = {
@@ -47,6 +49,7 @@
"ctrl+shift+l" = "next_layout"; "ctrl+shift+l" = "next_layout";
"ctrl+shift+left" = "resize_window narrower"; "ctrl+shift+left" = "resize_window narrower";
"ctrl+shift+right" = "resize_window right"; "ctrl+shift+right" = "resize_window right";
"kitty_mod+space" = "toggle_layout stack";
"ctrl+shift+0x27" = "change_font_size all +2.0"; "ctrl+shift+0x27" = "change_font_size all +2.0";
"ctrl+shift+minus" = "change_font_size all -2.0"; "ctrl+shift+minus" = "change_font_size all -2.0";
@@ -60,28 +63,67 @@
"f7>/" = "goto_session"; "f7>/" = "goto_session";
}; };
# https://github.com/kovidgoyal/kitty-themes
extraConfig = '' extraConfig = ''
background #1c1c1c ## name: GitHub Dark
foreground #ddeedd ## author: GitHub
cursor #e2bbef ## license: MIT
selection_background #4d4d4d
color0 #3d352a #: The basic colors
color8 #554444
color1 #cd5c5c foreground #c9d1d9
color9 #cc5533 background #0d1117
color2 #86af80 selection_foreground #0d1117
color10 #88aa22 selection_background #58a6ff
color3 #e8ae5b
color11 #ffa75d
color4 #6495ed #: Cursor colors
color12 #87ceeb
color5 #deb887 cursor #58a6ff
color13 #996600
color6 #b0c4de
color14 #b0c4de #: Tab bar colors
color7 #bbaa99
color15 #ddccbb tab_bar_background #010409
selection_foreground #1c1c1c active_tab_foreground #c9d1d9
active_tab_background #0d1117
inactive_tab_foreground #8b949e
inactive_tab_background #010409
#: The basic 16 colors
#: black
color0 #484f58
color8 #6e7681
#: red
color1 #ff7b72
color9 #ffa198
#: green
color2 #3fb950
color10 #56d364
#: yellow
color3 #d29922
color11 #e3b341
#: blue
color4 #58a6ff
color12 #79c0ff
#: magenta
color5 #bc8cff
color13 #d2a8ff
#: cyan
color6 #39c5cf
color14 #56d4dd
#: white
color7 #b1bac4
color15 #ffffff
''; '';
}; };
} }