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
| set shell=zsh " Set bash as the prompt for Vim | |
| set backspace=2 " Backspace deletes like most programs in insert mode | |
| set nobackup | |
| set nowritebackup | |
| set noswapfile " http://robots.thoughtbot.com/post/18739402579/global-gitignore#comment-458413287 | |
| set history=50 | |
| set ruler " show the cursor position all the tim | |
| set showcmd " display incomplete commands | |
| set laststatus=2 " Always display the status line | |
| set autowrite " Automatically :write before running commands |
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
| const activate = (oni) => { | |
| // access the Oni plugin API here | |
| // for example, unbind the default `<c-p>` action: | |
| // or bind a new action: | |
| oni.input.bind(["<tab>"], "contextMenu.next"); | |
| oni.input.bind(["<s-tab>"], "contextMenu.previous"); | |
| oni.input.bind(["<tab>"], "menu.next"); |
NewerOlder