clone of my dotfiles.ssp.sh
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

life

sspaeti 13124f0c 67561720

+6 -4
+1
Brewfile
··· 198 198 vscode "dorzey.vscode-sqlfluff" 199 199 vscode "eamodio.gitlens" 200 200 vscode "GitHub.copilot" 201 + vscode "GitHub.copilot-chat" 201 202 vscode "giyyapan.commander" 202 203 vscode "GrapeCity.gc-excelviewer" 203 204 vscode "HackMD.vscode-hackmd"
+4 -3
vscode/settings.json
··· 115 115 "editor.hideCursorInOverviewRuler": true, // hides cursor mark in the overview ruler 116 116 "editor.folding": true, // removes the folding feature 117 117 "editor.occurrencesHighlight": false, // removes highlights occurrences (still works when you select a word) 118 - "editor.matchBrackets": false, // removes the highlight of matching brackets (I use Subtle Match Brackets extension for this) 118 + "editor.matchBrackets": "never", // removes the highlight of matching brackets (I use Subtle Match Brackets extension for this) 119 119 "editor.glyphMargin": true, // removes the space used mainly for debugging indicators 120 120 "explorer.openEditors.visible": 0, // removes the activity bar (the 4 icons at the left of the screen), so now you will have to open the explorer, git, debugger and extension with shortcuts or through the Command Palette 121 121 "workbench.editor.showIcons": false, // removes icon from opened files in tabs ··· 299 299 "telemetry.telemetryLevel": "off", 300 300 "vscode-neovim.neovimExecutablePaths.darwin": "/opt/homebrew/bin/nvim", 301 301 "vscode-neovim.neovimInitVimPaths.darwin": "/Users/sspaeti/.config/nvim/", 302 - "codegpt.apiKey": "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", 302 + "codegpt.apiKey": "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", 303 303 "[python]": { 304 304 "editor.defaultFormatter": "ms-python.black-formatter" 305 - } 305 + }, 306 + "codegpt.model": "ChatGPT" 306 307 }
+1 -1
zsh/aliases.shrc
··· 72 72 73 73 alias lg=lazygit 74 74 alias cat=bat 75 - 75 + alias cato=/bin/cat 76 76 77 77 #docker 78 78 alias dkps="docker ps"