From bb9f29a4d61739d5e01260d7867183116fbf7204 Mon Sep 17 00:00:00 2001 From: Inhji Date: Sun, 18 Apr 2021 12:06:29 +0200 Subject: [PATCH] update sublime config --- config/sublime/keymap_linux.json | 3 +++ config/sublime/preferences.json | 9 +++++++-- install.conf.yaml | 3 +++ 3 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 config/sublime/keymap_linux.json 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