updated colorscheme, path, vscode config

* updated colorscheme in kitty, alacritty
* add nix paths in path(fish shell)
* remove unused options in vscode
This commit is contained in:
Smirnov Olexander 2022-05-08 00:14:26 +03:00
parent e1607e01b9
commit b14b4d8bbb
4 changed files with 64 additions and 52 deletions

View file

@ -50,33 +50,33 @@ font:
y: 1 y: 1
schemes: schemes:
vscode: &vscode kanagawa: &kanagawa
primary: primary:
background: "#24283b" background: "#1f1f28"
foreground: "#d4d4d4" foreground: '#dcd7ba'
cursor: selection:
text: CellBackground background: '0x2d4f67'
cursor: "#d4d4d4" foreground: '0xc8c093'
normal: normal:
black: "#1e1e1e" black: '0x090618'
red: "#f44747" red: '0xc34043'
green: "#608b4e" green: '0x76946a'
yellow: "#dcdcaa" yellow: '0xc0a36e'
blue: "#569cd6" blue: '0x7e9cd8'
magenta: "#c678dd" magenta: '0x957fb8'
cyan: "#56b6c2" cyan: '0x6a9589'
white: "#d4d4d4" white: '0xc8c093'
bright: bright:
black: "#545454" black: '0x727169'
red: "#f44747" red: '0xe82424'
green: "#608b4e" green: '0x98bb6c'
yellow: "#dcdcaa" yellow: '0xe6c384'
blue: "#569cd6" blue: '0x7fb4ca'
magenta: "#c678dd" magenta: '0x938aa9'
cyan: "#56b6c2" cyan: '0x7aa89f'
white: "#d4d4d4" white: '0xdcd7ba'
colors: *vscode colors: *kanagawa
key_bindings: key_bindings:
- { key: V, mods: Control|Shift, action: Paste } - { key: V, mods: Control|Shift, action: Paste }

View file

@ -9,14 +9,15 @@ set -g PATH $HOME/.golang/bin $PATH
set -g PATH $HOME/.yarn/bin $PATH set -g PATH $HOME/.yarn/bin $PATH
set -g PATH $HOME/.cargo/bin $PATH set -g PATH $HOME/.cargo/bin $PATH
set -g PATH $HOME/.deno/bin $PATH set -g PATH $HOME/.deno/bin $PATH
set -g PATH $HOME/.nix-profile/bin $PATH
set -g LOCALE_ARCHIVE /usr/lib/locale/locale-archive
set fish_greeting set fish_greeting
if status is-interactive if status is-interactive
starship init fish | source starship init fish | source
zoxide init fish | source zoxide init fish | source
fnm env | source fnm env | source
source ~/.asdf/asdf.fish
end end
function fish_user_key_bindings function fish_user_key_bindings

View file

@ -41,25 +41,41 @@ map ctrl+minus change_font_size all -1
map ctrl+backspace change_font_size all 0 map ctrl+backspace change_font_size all 0
## Colors ## Colors
background #24283b background #1F1F28
foreground #DCD7BA
selection_background #2D4F67
selection_foreground #C8C093
url_color #72A7BC
cursor #C8C093
foreground #d4d4d4 # Tabs
selection_background #d7ba7d active_tab_background #2D4F67
selection_foreground #1e1e1e active_tab_foreground #DCD7BA
url_color #0087BD inactive_tab_background #223249
color0 #1e1e1e inactive_tab_foreground #727169
color8 #808080 #tab_bar_background #15161E
color1 #f44747
color9 #f44747 # normal
color2 #608b4e color0 #090618
color10 #608b4e color1 #C34043
color3 #dcdcaa color2 #76946A
color11 #dcdcaa color3 #C0A36E
color4 #569cd6 color4 #7E9CD8
color12 #569cd6 color5 #957FB8
color5 #c678dd color6 #6A9589
color13 #c678dd color7 #C8C093
color6 #56b6c2
color14 #56b6c2 # bright
color7 #d4d4d4 color8 #727169
color15 #d4d4d4 color9 #E82424
color10 #98BB6C
color11 #E6C384
color12 #7FB4CA
color13 #938AA9
color14 #7AA89F
color15 #DCD7BA
# extended colors
color16 #FFA066
color17 #FF5D62

View file

@ -55,10 +55,5 @@
"[jsonc]": { "[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode" "editor.defaultFormatter": "esbenp.prettier-vscode"
}, },
"typescript.updateImportsOnFileMove.enabled": "always", "typescript.updateImportsOnFileMove.enabled": "always"
"terminal.integrated.commandsToSkipShell": [
"language-julia.interrupt"
],
"julia.symbolCacheDownload": true,
"julia.enableTelemetry": false
} }