Last active
March 23, 2018 13:01
-
-
Save tenequm/7ba05c30d6675d70e79b1425e1c65d41 to your computer and use it in GitHub Desktop.
sVim configuration file
This file contains 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
unmapAll | |
set nosmoothscroll | |
set preventdefaultesc | |
let mapleader = "," | |
let scrollstep = 100 | |
let newtaburl = "favorites://" | |
let hintcharacters = "1234567890"; | |
map "j" scrollDown | |
map "k" scrollUp | |
map "h" goBack | |
map "l" goForward | |
map "i" previousTab | |
map "o" nextTab | |
map "<leader> i" previousTab | |
map "<leader> o" nextTab | |
map "ctrl+v" showsVimrc | |
map "p" quit | |
map "ctrl+t" createTabbedHint | |
map "ctrl+g" createHint | |
map "<leader> g" createHint | |
map "ctrl+u" scrollPageUp | |
map "ctrl+d" scrollPageDown | |
map "escape" normalMode | |
map "ctrl+[" normalMode | |
map "command+ctrl+i" insertMode | |
map "]" insertMode | |
map "ctrl+f f" nextWindow | |
map "ctrl+f i" goToInput | |
map "ctrl+f g" scrollToTop | |
map "g g" scrollToTop | |
map "ctrl+f shift+g" scrollToBottom | |
map "shift+g" scrollToBottom |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment