Add Kitty
Friendship ended with ALACRITTY Now KITTY is my best friend
This commit is contained in:
parent
43c8224f5b
commit
69f948a469
9 changed files with 2683 additions and 6 deletions
|
@ -2,6 +2,7 @@
|
|||
imports = [
|
||||
./alacritty
|
||||
./firefox
|
||||
./kitty
|
||||
./steam
|
||||
./thunderbird
|
||||
# ./virtualbox
|
||||
|
|
15
nixos/modules/apps/kitty/default.nix
Normal file
15
nixos/modules/apps/kitty/default.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue