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
{ | |
"settingsVersion": "1.66", | |
"exclusionRules": [ | |
{ | |
"pattern": "https?://mail.google.com/*", | |
"passKeys": "?jk" | |
} | |
], | |
"filterLinkHints": true, | |
"waitForEnterForFilteredHints": true, |
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
// Place your key bindings in this file to override the defaults | |
[ | |
{ | |
"key": "alt+k", | |
"command": "workbench.action.nextEditorInGroup", | |
"when": "editorTextFocus && vim.active" | |
}, | |
{ | |
"key": "alt+j", | |
"command": "workbench.action.previousEditor", |
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
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
MaterialTheme: { | |
theme: 'Darker', | |
vibrancy: 'ultra-dark' |
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
" Specify a directory for plugins | |
" - For Neovim: stdpath('data') . '/plugged' | |
" - Avoid using standard Vim directory names like 'plugin' | |
call plug#begin('~/.config/nvim/plugged') | |
Plug 'arcticicestudio/nord-vim', { 'branch': 'develop' } | |
Plug '/usr/local/opt/fzf' | |
Plug 'junegunn/fzf.vim' | |
Plug 'tpope/vim-eunuch' | |
Plug 'vim-airline/vim-airline' | |
call plug#end() |
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
{ | |
"autoAttach": false, | |
"autoAttachOnDuplicated": 2, | |
"autoCollapseExpandSubtreeOnAttach": false, | |
"autoCollapseExpandSubtreeOnSelect": false, | |
"closeParentBehaviorMode": 1, | |
"collapseExpandSubtreeByDblClick": false, | |
"configsVersion": 10, | |
"incognitoAllowedExternalAddons": [ | |
"{c2c003ee-bd69-42a2-b0e9-6f34222cb046}" |
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
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to log to the console when each text editor is saved. | |
# | |
# atom.workspace.observeTextEditors (editor) -> | |
# editor.onDidSave -> |