Last active
October 21, 2017 02:38
-
-
Save josemarluedke/ff75f11f4e0122724fb74ac9dde8e72b to your computer and use it in GitHub Desktop.
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
// For more information on customizing Oni, | |
// check out our wiki page: | |
// https://github.com/extr0py/oni/wiki/Configuration | |
//add custom config here, such as | |
//"oni.useDefaultConfig": true, | |
//"oni.bookmarks": ["~/Documents",] | |
//"oni.loadInitVim": false, | |
//"editor.fontSize": "14px", | |
//"editor.fontFamily": "Monaco" | |
const activate = oni => { | |
oni.input.unbind('<tab>'); | |
}; | |
module.exports = { | |
activate, | |
'experimental.enableLanguageServerFromConfig': true, | |
'language.go.languageServer.command': 'go-langserver', | |
'oni.useExternalPopupMenu': true, | |
'oni.useDefaultConfig': false, | |
'oni.loadInitVim': true, | |
'editor.fontSize': '15px', | |
'editor.fontFamily': 'Menlo', | |
'editor.fontLigatures': true, | |
'editor.clipboard.enabled': true, | |
'editor.linePadding': 4, | |
'tabs.showVimTabs': true, | |
'oni.exclude': [ | |
'**/node_modules/**', | |
'**/dist/**', | |
'**/tmp/**', | |
'**/vendor/**' | |
] | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment