This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
remove Mod1 = Alt_L | |
remove Mod4 = Super_L | |
keysym Alt_L = Super_L | |
keysym Super_L = Alt_L | |
add Mod1 = Alt_L | |
add Mod4 = Super_L |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Colors (Ambience) | |
colors: | |
# Default colors | |
primary: | |
background: '#000000' | |
foreground: '#ffffff' | |
# Normal colors | |
normal: | |
black: '#2e3436' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# linux | |
rm -rf ~/.config/JetBrains/IntelliJIdea*/eval/*.evaluation.key ~/.config/JetBrains/IntelliJIdea*/options/other.xml ~/.java/.userPrefs/jetbrains/idea | |
# mac os | |
rm ~/Library/Application\ Support/JetBrains/IntelliJIdea*/eval/*.evaluation.key ~/Library/Application\ Support/JetBrains/IntelliJIdea*/options/other.xml ~/Library/Preferences/jetbrains.idea.* ~/Library/Preferences/com.apple.java.util.prefs.plist |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd /home/user/ | |
fdisk /dev/mmcblk0 | |
rm -rf boot | |
rm -rf root | |
mkfs.vfat /dev/mmcblk0p1 | |
mkdir boot | |
mount /dev/mmcblk0p1 boot | |
mkfs.ext4 /dev/mmcblk0p2 | |
mkdir root | |
mount /dev/mmcblk0p2 root |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"global": { | |
"check_for_updates_on_startup": true, | |
"show_in_menu_bar": false, | |
"show_profile_name_in_menu_bar": false | |
}, | |
"profiles": [{ | |
"complex_modifications": { | |
"parameters": { | |
"basic.simultaneous_threshold_milliseconds": 50, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"editor.bracketPairColorization.enabled": false, | |
"editor.formatOnSave": false, | |
"editor.largeFileOptimizations": false, | |
"editor.minimap.enabled": false, | |
"editor.rulers": [ | |
80 | |
], | |
"editor.scrollBeyondLastLine": false, | |
"editor.unicodeHighlight.ambiguousCharacters": false, |