diff options
| author | Marc Vertes <mvertes@free.fr> | 2025-03-06 11:01:32 +0100 |
|---|---|---|
| committer | Marc Vertes <mvertes@free.fr> | 2025-03-06 11:01:32 +0100 |
| commit | 6aa546405ba8b3bffd58d5a63d7f9b3c22ede322 (patch) | |
| tree | bd2a0c62f95ac20f29a972833181d55b17266b9e | |
| parent | f82bfab3dd0fa3692030fa3924aefefc6b5fa30a (diff) | |
| parent | d945572ccb05a336a78548f45e1af5d6600d767c (diff) | |
Merge branch 'master' of github.com:mvertes/dotfiles
| -rw-r--r-- | .config/kitty/kitty.conf | 4 | ||||
| -rw-r--r-- | .gitconfig | 9 | ||||
| -rw-r--r-- | .vimrc | 4 |
3 files changed, 16 insertions, 1 deletions
diff --git a/.config/kitty/kitty.conf b/.config/kitty/kitty.conf index c79faf1..6236cf2 100644 --- a/.config/kitty/kitty.conf +++ b/.config/kitty/kitty.conf @@ -166,6 +166,8 @@ font_size 14.0 #: Cursor customization {{{ +shell_integration no-cursor + # cursor #cccccc cursor #ff0000 @@ -177,7 +179,7 @@ cursor #ff0000 #: with the background color of the cell underneath instead, use the #: special keyword: background -# cursor_shape block +cursor_shape block #: The cursor shape can be one of (block, beam, underline). Note that #: when reloading the config this will be changed only if the cursor @@ -16,9 +16,18 @@ rebase = false [push] autoSetupRemote = true + default = simple + followTags = true [hub] protocol = ssh [init] defaultBranch = main [core] excludesfile = ~/.gitignore_global +[diff] + algorithm = histogram + colorMoved = plain + mnemonicPrefix = true + renames = true +[commit] + verbose = true @@ -28,7 +28,11 @@ set smartcase set belloff=all " For MacVim +augroup tune_colors | au! + au ColorScheme * hi Cursor guibg=red guifg=white +augroup END set guifont=6x13:h13 +set guicursor=a:block-Cursor/lCursor-blinkon0 " fzf plugin set rtp+=/opt/homebrew/opt/fzf |
