3 files changed,
14 insertions(+),
2 deletions(-)
jump to
| M | config/alacritty.yml |
| M | config/fish/config.fish |
| M | vscode/settings.json |
M
config/alacritty.yml
··· 4 4 window: 5 5 title: Alacritty 6 6 dynamic_padding: false 7 + opacity: 1 7 8 padding: 8 9 x: 0 9 10 y: 2 ··· 19 20 tabspaces: 4 20 21 live_config_reload: true 21 22 alt_send_esc: true 22 -background_opacity: 1 23 23 dynamic_title: false 24 24 draw_bold_text_with_bright_colors: true 25 25
M
vscode/settings.json
··· 44 44 "extensions.ignoreRecommendations": true, 45 45 "gitlens.codeLens.enabled": true, 46 46 "tabnine.experimentalAutoImports": true, 47 + "vim.insertModeKeyBindings": [ 48 + { 49 + "before": [ 50 + "j", 51 + "k" 52 + ], 53 + "after": [ 54 + "<Esc>" 55 + ] 56 + } 57 + ], 47 58 // Languages 48 59 "go.lintOnSave": "package", 49 60 // "go.lintTool": "golangci-lint", ··· 75 86 "liveServer.settings.donotVerifyTags": true, 76 87 "diffEditor.ignoreTrimWhitespace": false, 77 88 "gitlens.hovers.currentLine.over": "line" 78 -} 89 +}