Skip to content

Commit d45a69e

Browse files
committed
small tweaks
1 parent 54a4bd2 commit d45a69e

File tree

3 files changed

+35
-12
lines changed

3 files changed

+35
-12
lines changed

roles/dotfiles/files/Mackup/.config/karabiner/karabiner.json

+16-11
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,21 @@
320320
}
321321
],
322322
"type": "basic"
323+
},
324+
{
325+
"from": {
326+
"key_code": "print_screen",
327+
"modifiers": {
328+
"mandatory": [
329+
]
330+
}
331+
},
332+
"to": [
333+
{
334+
"shell_command": "/Users/yuhonas/.asdf/shims/kasa --host 10.0.0.106 toggle"
335+
}
336+
],
337+
"type": "basic"
323338
}
324339
]
325340
}
@@ -743,16 +758,6 @@
743758
"consumer_key_code": "al_terminal_lock_or_screensaver"
744759
}
745760
]
746-
},
747-
{
748-
"from": {
749-
"key_code": "print_screen"
750-
},
751-
"to": [
752-
{
753-
"consumer_key_code": "mute"
754-
}
755-
]
756761
}
757762
],
758763
"virtual_hid_keyboard": {
@@ -762,4 +767,4 @@
762767
}
763768
}
764769
]
765-
}
770+
}

roles/dotfiles/files/Mackup/.oh-my-zsh/custom/custom.zsh

+5
Original file line numberDiff line numberDiff line change
@@ -158,3 +158,8 @@ if (( $+commands[starship] )); then
158158
# znap eval starship 'starship init zsh --print-full-init'
159159
fi
160160

161+
if (( $+commands[thefuck] )); then
162+
eval $(thefuck --alias)
163+
fi
164+
165+

roles/dotfiles/files/Mackup/Library/Application Support/Code/User/settings.json

+14-1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,11 @@
4343
"vim.cursorStylePerMode.replace": "underline",
4444
"vim.replaceWithRegister": true,
4545
"editor.inlineSuggest.enabled": true,
46+
"prettier.documentSelectors": ["**/*.astro"],
47+
"[astro]": {
48+
"editor.formatOnSave": true,
49+
"editor.defaultFormatter": "astro-build.astro-vscode"
50+
},
4651
"[html]": {
4752
"editor.defaultFormatter": "esbenp.prettier-vscode"
4853
},
@@ -57,6 +62,9 @@
5762
"[rust]": {
5863
"editor.formatOnSave": true
5964
},
65+
"[elixir]": {
66+
"editor.formatOnSave": true
67+
},
6068
"[vue]": {
6169
"editor.defaultFormatter": "esbenp.prettier-vscode",
6270
"editor.formatOnSave": true
@@ -94,5 +102,10 @@
94102
"[typescript]": {
95103
"editor.defaultFormatter": "vscode.typescript-language-features"
96104
},
97-
"workbench.colorTheme": "Wal"
105+
"tailwindCSS.includeLanguages": {
106+
"elixir": "html",
107+
"phoenix-heex": "html"
108+
},
109+
"workbench.colorTheme": "Solarized Dark",
110+
"github.copilot.editor.enableAutoCompletions": true
98111
}

0 commit comments

Comments
 (0)