3 files changed,
19 insertions(+),
13 deletions(-)
jump to
| M | config/kitty/kitty.conf |
| M | vscode/settings.json |
| M | zshrc |
M
config/kitty/kitty.conf
··· 28 28 focus_follows_mouse no 29 29 30 30 ## Mappings 31 -map ctrl+shift+1 goto_tab 1 32 -map ctrl+shift+2 goto_tab 2 33 -map ctrl+shift+3 goto_tab 3 34 -map ctrl+shift+4 goto_tab 4 35 -map ctrl+shift+5 goto_tab 5 31 +map alt+1 goto_tab 1 32 +map alt+2 goto_tab 2 33 +map alt+3 goto_tab 3 34 +map alt+4 goto_tab 4 35 +map alt+5 goto_tab 5 36 +map alt+5 goto_tab 6 37 +map alt+5 goto_tab 7 38 +map ctrl+shift+t new_tab_with_cwd 36 39 map ctrl+equal change_font_size all +1 37 40 map ctrl+minus change_font_size all -1 38 41 map ctrl+backspace change_font_size all 0 39 42 40 43 ## Colors 41 -background #1E1E29 42 -# background #1e1e1e 44 +background #2E3440 43 45 44 46 foreground #d4d4d4 45 47 selection_background #d7ba7d
M
vscode/settings.json
··· 1 1 { 2 - "workbench.colorTheme": "Default Dark+", 2 + "workbench.colorTheme": "Nord", 3 3 "workbench.iconTheme": "material-icon-theme", 4 - "workbench.sideBar.location": "right", 4 + "workbench.sideBar.location": "left", 5 5 "workbench.startupEditor": "none", 6 - "workbench.activityBar.visible": false, 6 + "workbench.activityBar.visible": true, 7 7 "window.menuBarVisibility": "toggle", 8 8 "update.showReleaseNotes": false, 9 9 // Font 10 10 "editor.fontSize": 16, 11 11 "terminal.integrated.fontSize": 15, 12 + "go.testExplorer.enable": true, 12 13 // Editor 13 14 "editor.fontFamily": "'Jetbrains Mono'", 14 15 "editor.cursorSmoothCaretAnimation": false, ··· 71 72 "workbench.editorAssociations": { 72 73 "*.mp4": "default" 73 74 }, 74 - "liveServer.settings.donotVerifyTags": true 75 + "liveServer.settings.donotVerifyTags": true, 76 + "diffEditor.ignoreTrimWhitespace": false, 77 + "gitlens.hovers.currentLine.over": "line" 75 78 }
M
zshrc
··· 4 4 export EDITOR="nvim" 5 5 6 6 ## Oh my zsh 7 -plugins=(dotenv extract) 7 +plugins=(dotenv asdf) 8 8 ZSH_THEME="simple" 9 9 DISABLE_AUTO_TITLE="true" 10 10 source $HOME/.oh-my-zsh/oh-my-zsh.sh ··· 18 18 alias gor="go run" gob="go build" gog="go get" 19 19 alias ...="cd ../.." .3="cd ../../.." 20 20 alias v="nvim" vim="v" vi="vim" 21 -alias asdfi=". /opt/asdf-vm/asdf.sh" sdki=". $HOME/.sdkman/bin/sdkman-init.sh" 21 +alias sdki=". $HOME/.sdkman/bin/sdkman-init.sh" 22 +alias asdfi=". $HOME/.asdf/asdf.sh" 22 23 23 24 if [[ -f "/bin/exa" ]]; then 24 25 alias ls="exa -l" ll="ls" la="ls -a"