Add Kitty

Friendship ended with ALACRITTY
Now KITTY is my best friend
This commit is contained in:
Tibo De Peuter 2023-10-11 20:56:57 +02:00
parent 43c8224f5b
commit 69f948a469
9 changed files with 2683 additions and 6 deletions

View file

@ -2,6 +2,7 @@
imports = [
./alacritty
./firefox
./kitty
./steam
./thunderbird
# ./virtualbox

View file

@ -0,0 +1,15 @@
{ inputs, lib, config, pkgs, ... }:
{
home-manager.users.tdpeuter = { pkgs, ... }: {
home = {
packages = with pkgs; [
kitty
];
file = {
".config/kitty".source = ../../../../stow/kitty/.config/kitty;
};
};
};
}

View file

@ -9,7 +9,7 @@
programs.vim = {
enable = true;
extraConfig = ''
colorscheme catppuccin_mocha_mod
colorscheme tdpeuter-dark
" Tags
" pacman -S ctags
@ -47,6 +47,11 @@
if $TERM == 'alacritty'
set ttymouse=sgr " Alacritty specific
endif
if $TERM == 'xterm-kitty'
" Fix <HOME> and <END> not working
set term=xterm-256color
endif
if has("autocmd")
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
" https://stackoverflow.com/a/37558470/19044747