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
schemes:
vscode: &vscode
kanagawa: &kanagawa
primary:
background: "#24283b"
foreground: "#d4d4d4"
cursor:
text: CellBackground
cursor: "#d4d4d4"
background: "#1f1f28"
foreground: '#dcd7ba'
selection:
background: '0x2d4f67'
foreground: '0xc8c093'
normal:
black: "#1e1e1e"
red: "#f44747"
green: "#608b4e"
yellow: "#dcdcaa"
blue: "#569cd6"
magenta: "#c678dd"
cyan: "#56b6c2"
white: "#d4d4d4"
black: '0x090618'
red: '0xc34043'
green: '0x76946a'
yellow: '0xc0a36e'
blue: '0x7e9cd8'
magenta: '0x957fb8'
cyan: '0x6a9589'
white: '0xc8c093'
bright:
black: "#545454"
red: "#f44747"
green: "#608b4e"
yellow: "#dcdcaa"
blue: "#569cd6"
magenta: "#c678dd"
cyan: "#56b6c2"
white: "#d4d4d4"
black: '0x727169'
red: '0xe82424'
green: '0x98bb6c'
yellow: '0xe6c384'
blue: '0x7fb4ca'
magenta: '0x938aa9'
cyan: '0x7aa89f'
white: '0xdcd7ba'
colors: *vscode
colors: *kanagawa
key_bindings:
- { 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/.cargo/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
if status is-interactive
starship init fish | source
zoxide init fish | source
fnm env | source
source ~/.asdf/asdf.fish
end
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
## Colors
background #24283b
background #1F1F28
foreground #DCD7BA
selection_background #2D4F67
selection_foreground #C8C093
url_color #72A7BC
cursor #C8C093
foreground #d4d4d4
selection_background #d7ba7d
selection_foreground #1e1e1e
url_color #0087BD
color0 #1e1e1e
color8 #808080
color1 #f44747
color9 #f44747
color2 #608b4e
color10 #608b4e
color3 #dcdcaa
color11 #dcdcaa
color4 #569cd6
color12 #569cd6
color5 #c678dd
color13 #c678dd
color6 #56b6c2
color14 #56b6c2
color7 #d4d4d4
color15 #d4d4d4
# Tabs
active_tab_background #2D4F67
active_tab_foreground #DCD7BA
inactive_tab_background #223249
inactive_tab_foreground #727169
#tab_bar_background #15161E
# normal
color0 #090618
color1 #C34043
color2 #76946A
color3 #C0A36E
color4 #7E9CD8
color5 #957FB8
color6 #6A9589
color7 #C8C093
# bright
color8 #727169
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]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"typescript.updateImportsOnFileMove.enabled": "always",
"terminal.integrated.commandsToSkipShell": [
"language-julia.interrupt"
],
"julia.symbolCacheDownload": true,
"julia.enableTelemetry": false
"typescript.updateImportsOnFileMove.enabled": "always"
}