4 files changed,
64 insertions(+),
52 deletions(-)
Author:
Smirnov Olexander
ss2316544@gmail.com
Committed at:
2022-05-08 00:14:26 +0300
Parent:
e1607e0
M
config/alacritty.yml
··· 50 50 y: 1 51 51 52 52 schemes: 53 - vscode: &vscode 53 + kanagawa: &kanagawa 54 54 primary: 55 - background: "#24283b" 56 - foreground: "#d4d4d4" 57 - cursor: 58 - text: CellBackground 59 - cursor: "#d4d4d4" 55 + background: "#1f1f28" 56 + foreground: '#dcd7ba' 57 + selection: 58 + background: '0x2d4f67' 59 + foreground: '0xc8c093' 60 60 normal: 61 - black: "#1e1e1e" 62 - red: "#f44747" 63 - green: "#608b4e" 64 - yellow: "#dcdcaa" 65 - blue: "#569cd6" 66 - magenta: "#c678dd" 67 - cyan: "#56b6c2" 68 - white: "#d4d4d4" 61 + black: '0x090618' 62 + red: '0xc34043' 63 + green: '0x76946a' 64 + yellow: '0xc0a36e' 65 + blue: '0x7e9cd8' 66 + magenta: '0x957fb8' 67 + cyan: '0x6a9589' 68 + white: '0xc8c093' 69 69 bright: 70 - black: "#545454" 71 - red: "#f44747" 72 - green: "#608b4e" 73 - yellow: "#dcdcaa" 74 - blue: "#569cd6" 75 - magenta: "#c678dd" 76 - cyan: "#56b6c2" 77 - white: "#d4d4d4" 70 + black: '0x727169' 71 + red: '0xe82424' 72 + green: '0x98bb6c' 73 + yellow: '0xe6c384' 74 + blue: '0x7fb4ca' 75 + magenta: '0x938aa9' 76 + cyan: '0x7aa89f' 77 + white: '0xdcd7ba' 78 78 79 -colors: *vscode 79 +colors: *kanagawa 80 80 81 81 key_bindings: 82 82 - { key: V, mods: Control|Shift, action: Paste }
M
config/fish/config.fish
··· 9 9 set -g PATH $HOME/.yarn/bin $PATH 10 10 set -g PATH $HOME/.cargo/bin $PATH 11 11 set -g PATH $HOME/.deno/bin $PATH 12 +set -g PATH $HOME/.nix-profile/bin $PATH 13 + 14 +set -g LOCALE_ARCHIVE /usr/lib/locale/locale-archive 12 15 13 16 set fish_greeting 14 17 if status is-interactive 15 18 starship init fish | source 16 19 zoxide init fish | source 17 20 fnm env | source 18 - 19 - source ~/.asdf/asdf.fish 20 21 end 21 22 22 23 function fish_user_key_bindings
M
config/kitty/kitty.conf
··· 41 41 map ctrl+backspace change_font_size all 0 42 42 43 43 ## Colors 44 -background #24283b 44 +background #1F1F28 45 +foreground #DCD7BA 46 +selection_background #2D4F67 47 +selection_foreground #C8C093 48 +url_color #72A7BC 49 +cursor #C8C093 45 50 46 -foreground #d4d4d4 47 -selection_background #d7ba7d 48 -selection_foreground #1e1e1e 49 -url_color #0087BD 50 -color0 #1e1e1e 51 -color8 #808080 52 -color1 #f44747 53 -color9 #f44747 54 -color2 #608b4e 55 -color10 #608b4e 56 -color3 #dcdcaa 57 -color11 #dcdcaa 58 -color4 #569cd6 59 -color12 #569cd6 60 -color5 #c678dd 61 -color13 #c678dd 62 -color6 #56b6c2 63 -color14 #56b6c2 64 -color7 #d4d4d4 65 -color15 #d4d4d4 51 +# Tabs 52 +active_tab_background #2D4F67 53 +active_tab_foreground #DCD7BA 54 +inactive_tab_background #223249 55 +inactive_tab_foreground #727169 56 +#tab_bar_background #15161E 57 + 58 +# normal 59 +color0 #090618 60 +color1 #C34043 61 +color2 #76946A 62 +color3 #C0A36E 63 +color4 #7E9CD8 64 +color5 #957FB8 65 +color6 #6A9589 66 +color7 #C8C093 67 + 68 +# bright 69 +color8 #727169 70 +color9 #E82424 71 +color10 #98BB6C 72 +color11 #E6C384 73 +color12 #7FB4CA 74 +color13 #938AA9 75 +color14 #7AA89F 76 +color15 #DCD7BA 77 + 78 + 79 +# extended colors 80 +color16 #FFA066 81 +color17 #FF5D62
M
vscode/settings.json
··· 55 55 "[jsonc]": { 56 56 "editor.defaultFormatter": "esbenp.prettier-vscode" 57 57 }, 58 - "typescript.updateImportsOnFileMove.enabled": "always", 59 - "terminal.integrated.commandsToSkipShell": [ 60 - "language-julia.interrupt" 61 - ], 62 - "julia.symbolCacheDownload": true, 63 - "julia.enableTelemetry": false 58 + "typescript.updateImportsOnFileMove.enabled": "always" 64 59 }