tangled
alpha
login
or
join now
dekker.one
/
dotfiles
0
fork
atom
The general configuration of my development environment and many other general computer things.
0
fork
atom
overview
issues
pulls
pipelines
Switch editor from vscode to vscodium
dekker.one
2 years ago
ccd4dd16
0cc93f75
verified
This commit was signed with the committer's
known signature
.
dekker.one
SSH Key Fingerprint:
SHA256:ca4pdN0aciUZT7uFsEm/8J8c2ZG8xuEeKvZ/VmAqebo=
+35
-5
4 changed files
expand all
collapse all
unified
split
Brewfile
dot_config
chezmoi
chezmoi.toml
xonsh
rc.d
env.xsh
private_Library
private_Application Support
private_VSCodium
User
settings.json
+1
-2
Brewfile
···
37
37
brew "ripgrep"
38
38
brew "rustup-init"
39
39
brew "starship"
40
40
-
brew "stgit"
41
40
brew "tectonic"
42
41
brew "texlab"
43
42
brew "topgrade"
···
75
74
cask "skim"
76
75
cask "sublime-merge"
77
76
cask "sublime-text"
78
78
-
cask "visual-studio-code"
77
77
+
cask "vscodium"
79
78
cask "zoom"
80
79
cask "zotero"
81
80
cask "zulip"
+2
-2
dot_config/chezmoi/chezmoi.toml
···
1
1
[edit]
2
2
-
command = "code"
3
3
-
args = ["--wait"]
2
2
+
command = "codium"
3
3
+
args = ["--wait"]
+1
-1
dot_config/xonsh/rc.d/env.xsh
···
26
26
$AUTO_CD = True
27
27
#> Default Editor
28
28
$EDITOR = "nvim"
29
29
-
$VISUAL = "code"
29
29
+
$VISUAL = "codium"
30
30
#> Monash Cluster
31
31
$OPTCLUSTER = "compute.optimisation-2020.cloud.edu.au"
32
32
#> CMake settings
+31
private_Library/private_Application Support/private_VSCodium/User/settings.json
···
1
1
+
{
2
2
+
"cmake.buildDirectory": "${workspaceFolder}/build.nosync",
3
3
+
"cmake.configureOnOpen": false,
4
4
+
"cmake.generator": "Ninja Multi-Config",
5
5
+
"cmake.installPrefix": "${workspaceFolder}/build.nosync/install",
6
6
+
"editor.fontFamily": "Iosevka Slab, Iosevka, Menlo, Monaco, 'Courier New', monospace",
7
7
+
"editor.fontLigatures": true,
8
8
+
"editor.fontSize": 14,
9
9
+
"editor.formatOnSave": true,
10
10
+
"editor.insertSpaces": false,
11
11
+
"editor.tabSize": 2,
12
12
+
"editor.wordWrap": "on",
13
13
+
"extensions.ignoreRecommendations": true,
14
14
+
"files.autoSave": "onWindowChange",
15
15
+
"files.insertFinalNewline": true,
16
16
+
"lldb.consoleMode": "evaluate",
17
17
+
"ltex.additionalRules.enablePickyRules": true,
18
18
+
"ltex.language": "en-GB",
19
19
+
"python.formatting.blackPath": "/opt/homebrew/bin/black",
20
20
+
"python.formatting.provider": "black",
21
21
+
"rust-analyzer.debug.engine": "vadimcn.vscode-lldb",
22
22
+
"terminal.external.osxExec": "kitty.app",
23
23
+
"terminal.integrated.scrollback": 10000,
24
24
+
"terminal.integrated.shell.osx": "xonsh",
25
25
+
"window.autoDetectColorScheme": true,
26
26
+
"window.commandCenter": true,
27
27
+
"workbench.colorTheme": "Catppuccin Latte",
28
28
+
"workbench.preferredDarkColorTheme": "Catppuccin Macchiato",
29
29
+
"workbench.preferredLightColorTheme": "Catppuccin Latte",
30
30
+
"workbench.startupEditor": "none"
31
31
+
}