all repos

dotfiles @ 044d39e

i use rach linux btw
3 files changed, 11 insertions(+), 3 deletions(-)
updated zsh, git, kitty
Author: neoteny ss2316544@gmail.com
Committed at: 2022-01-07 23:14:58 +0200
Parent: bf9e797
M config/kitty/kitty.conf
···
        9
        9
         bold_italic_font  auto

      
        10
        10
         disable_ligatures never

      
        11
        11
         

      
        
        12
        +## Tabs

      
        
        13
        +tab_bar_style fade

      
        
        14
        +tab_fade 0.5 0.75 1

      
        
        15
        +

      
        12
        16
         ## Bell

      
        13
        17
         enable_audio_bell    no

      
        14
        18
         visual_bell_duration 0

      ···
        29
        33
         map ctrl+shift+3 goto_tab 3

      
        30
        34
         map ctrl+shift+4 goto_tab 4 

      
        31
        35
         map ctrl+shift+5 goto_tab 5 

      
        
        36
        +map ctrl+equal change_font_size all +1

      
        
        37
        +map ctrl+minus change_font_size all -1

      
        
        38
        +map ctrl+backspace change_font_size all 0

      
        32
        39
         

      
        33
        40
         ## Colors

      
        34
        41
         background #1E1E29

      
        35
        42
         # background #1e1e1e

      
        36
        
        -

      
        37
        43
         

      
        38
        44
         foreground #d4d4d4

      
        39
        45
         selection_background #d7ba7d

      
M gitconfig
···
        5
        5
         [github]

      
        6
        6
           name = Smirnov-O

      
        7
        7
         

      
        
        8
        +[gpg]

      
        
        9
        +	program = gpg2

      
        
        10
        +

      
        8
        11
         [core]

      
        9
        12
           editor = nvim

      
        10
        13
         

      
M zshrc
···
        4
        4
         export EDITOR="nvim"

      
        5
        5
         

      
        6
        6
         ## Oh my zsh

      
        7
        
        -plugins=(git dotenv yarn extract)

      
        
        7
        +plugins=(dotenv extract)

      
        8
        8
         ZSH_THEME="simple"

      
        9
        9
         DISABLE_AUTO_TITLE="true"

      
        10
        10
         source $HOME/.oh-my-zsh/oh-my-zsh.sh

      ···
        23
        23
         if [[ -f "/bin/exa" ]]; then

      
        24
        24
            alias ls="exa -l" ll="ls" la="ls -a"

      
        25
        25
         fi

      
        26
        
        -