Skip to content

Instantly share code, notes, and snippets.

@josemarluedke
Last active October 21, 2017 02:38
Show Gist options
  • Save josemarluedke/ff75f11f4e0122724fb74ac9dde8e72b to your computer and use it in GitHub Desktop.
Save josemarluedke/ff75f11f4e0122724fb74ac9dde8e72b to your computer and use it in GitHub Desktop.
// 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