Skip to content

Instantly share code, notes, and snippets.

View chaitb's full-sized avatar

Chaitanya Bhagwat chaitb

View GitHub Profile
@chaitb
chaitb / vimium-options.json
Last active May 6, 2021 07:40
Vimium Configuration
{
"settingsVersion": "1.66",
"exclusionRules": [
{
"pattern": "https?://mail.google.com/*",
"passKeys": "?jk"
}
],
"filterLinkHints": true,
"waitForEnterForFilteredHints": true,
@chaitb
chaitb / keybindings.json
Created April 5, 2021 07:08
VSCode Vim Style Navigation Keybindings
// 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",
@chaitb
chaitb / hyper.js
Created January 13, 2021 07:25
Hyper Configuration for MacOS with Nord Theme
// 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'
@chaitb
chaitb / init.vim
Created November 2, 2020 06:52
NeoVim Configuration for MacOS
" 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()
@chaitb
chaitb / tabStyleTrees.json
Created July 23, 2020 12:37
Firefox Configs for no navigation bar with hovering tab section.
{
"autoAttach": false,
"autoAttachOnDuplicated": 2,
"autoCollapseExpandSubtreeOnAttach": false,
"autoCollapseExpandSubtreeOnSelect": false,
"closeParentBehaviorMode": 1,
"collapseExpandSubtreeByDblClick": false,
"configsVersion": 10,
"incognitoAllowedExternalAddons": [
"{c2c003ee-bd69-42a2-b0e9-6f34222cb046}"
# 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 ->