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
| --[[ | |
| Author: Mark van den Berg | |
| Version: 0.8 | |
| Date: 01-05-2020 | |
| Special credits to https://github.com/wookiefriseur for showing a way to do this for windows gestures which inspired this script | |
| For some windows gestures check https://github.com/wookiefriseur/LogitechMouseGestures | |
| This script wil let you use a button on your mouse to act like the "Gesture button" from Logitech Options. | |
| It will also let you use another button on your mouse for navigating between browser pages using gestures. |
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": true, | |
| "show_profile_name_in_menu_bar": false | |
| }, | |
| "profiles": [ | |
| { | |
| "complex_modifications": { | |
| "parameters": { |
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
| html, | |
| body { | |
| font-family: "Classic Grotesque Pro", "Hiragino Sans GB", sans-serif; | |
| font-size: 16px; | |
| color: #34495e; | |
| -webkit-text-size-adjust:none; | |
| min-width: 200px; | |
| max-width: 760px; | |
| margin: 0 auto; | |
| padding: 1rem; |
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
| syntax on " 自动语法高亮 | |
| set wrap " 设置自动换行 | |
| set nocompatible " 关闭 vi 兼容模式 | |
| set number " 显示行号 | |
| set t_Co=256 | |
| set so=10 | |
| set autoindent " 自动缩进 | |
| set modeline " 底部的模式行 | |
| set macligatures | |
| set cursorline |