Last active
October 18, 2018 02:22
-
-
Save direvus/f7947fef39b5055c974697d5e08218fe to your computer and use it in GitHub Desktop.
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
filetype plugin indent on | |
syntax on | |
set sw=4 ts=4 sts=4 ai et exrc nohls | |
set foldmethod=indent | |
set ruler | |
set showcmd | |
set list | |
set listchars=tab:▸\ ,eol:↵ | |
colo desert | |
autocmd FileType javascript,css,yaml,json setlocal sw=2 sts=2 ts=2 et | |
autocmd FileType make setlocal noet | |
let g:jsx_ext_required = 0 |
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
import * as React from "react" | |
import * as Oni from "oni-api" | |
export const activate = (oni: Oni.Plugin.Api) => { | |
console.log("config activated") | |
// Input | |
// | |
// Add input bindings here: | |
// | |
oni.input.bind("<c-enter>", () => console.log("Control+Enter was pressed")) | |
// | |
// Or remove the default bindings here by uncommenting the below line: | |
// | |
// oni.input.unbind("<c-p>") | |
} | |
export const deactivate = (oni: Oni.Plugin.Api) => { | |
console.log("config deactivated") | |
} | |
export const configuration = { | |
//add custom config here, such as | |
"ui.colorscheme": "nord", | |
//"oni.useDefaultConfig": true, | |
//"oni.bookmarks": ["~/Documents"], | |
"oni.loadInitVim": true, | |
"editor.fontSize": "10px", | |
"editor.fontFamily": "Inconsolata", | |
// UI customizations | |
"ui.animations.enabled": true, | |
"ui.fontSmoothing": "auto", | |
"sidebar.default.open": false, | |
"autoClosingPairs.enabled": false, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment