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

6
nixos/flake.lock generated
View file

@ -93,11 +93,11 @@
},
"nixpkgs-unstable": {
"locked": {
"lastModified": 1696604326,
"narHash": "sha256-YXUNI0kLEcI5g8lqGMb0nh67fY9f2YoJsILafh6zlMo=",
"lastModified": 1696879762,
"narHash": "sha256-Ud6bH4DMcYHUDKavNMxAhcIpDGgHMyL/yaDEAVSImQY=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "87828a0e03d1418e848d3dd3f3014a632e4a4f64",
"rev": "f99e5f03cc0aa231ab5950a15ed02afec45ed51a",
"type": "github"
},
"original": {

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