diff --git a/config/sublime/keymap_linux.json b/config/sublime/keymap_linux.json new file mode 100644 index 0000000..b8c5973 --- /dev/null +++ b/config/sublime/keymap_linux.json @@ -0,0 +1,3 @@ +[ + { "keys": ["ctrl+#"], "command": "toggle_comment", "args": { "block": false } } +] diff --git a/config/sublime/preferences.json b/config/sublime/preferences.json index ecba758..4b5d38d 100644 --- a/config/sublime/preferences.json +++ b/config/sublime/preferences.json @@ -4,12 +4,17 @@ [ "Vintage", ], - "font_size": 10, + "font_size": 13, + "font_face": "Fira Code", "binary_file_patterns": [ "*.jpg", "*.jpeg", "*.png", "*.gif", "*.ttf", "*.tga", "*.dds", "*.ico", "*.eot", "*.pdf", "*.swf", "*.jar", "*.zip", "deps/**/*", "_build/**/*", "docs/**/*", "**/node_modules/**/*" - ] + ], + "tab_size": 2, + "translate_tabs_to_spaces": false, + "hardware_acceleration": "opengl", + "file_tab_style": "square" } \ No newline at end of file diff --git a/install.conf.yaml b/install.conf.yaml index ccbcaf6..8ff046f 100644 --- a/install.conf.yaml +++ b/install.conf.yaml @@ -29,4 +29,7 @@ force: true ~/.config/sublime-text/Packages/User/Preferences.sublime-settings: path: config/sublime/preferences.json + force: true + ~/.config/sublime-text/Packages/User/Default (Linux).sublime-keymap: + path: config/sublime/keymap_linux.json force: true \ No newline at end of file