Skip to content

Instantly share code, notes, and snippets.

View dnavas77's full-sized avatar

dnavas77 dnavas77

View GitHub Profile
Vim Keybindings
--------------------------
'atom-text-editor.vim-mode:not(.insert-mode)':
'ctrl-h': 'pane:show-previous-item'
'ctrl-j': 'window:focus-pane-below'
'ctrl-k': 'window:focus-pane-above'
'ctrl-l': 'pane:show-next-item'
'ctrl-w w': 'core:close'
'space space': 'core:save'
@dnavas77
dnavas77 / NeoVim Config Mac
Last active April 2, 2021 03:53
Neovim Config Mac
filetype off
syntax off
"~~~~~~~~~ Skip initialization for vim-tiny or vim-small.
if 0 | endif
if &compatible
set nocompatible
endif
/* ~~~~~~~~~~ USER PREFERENCES ~~~~~~~~~~~~ */
{
"color_scheme": "Packages/Color Scheme - Default/Mariana.tmTheme",
"font_face": "Menlo",
"font_size": 13,
"tab_size": 2,
"ignored_packages":
[
],
"theme": "Default.sublime-theme",
# https://github.com/ChrisJohnsen/tmux-MacOSX-pasteboard
set-option -g default-command "reattach-to-user-namespace -l zsh"
# Initial setup
set -g default-terminal xterm-256color
set -g status-keys vi
# Set Prefix
set-option -g prefix C-j
unbind-key C-j
"------------- Vundle and Plugins ------------
set nocompatible
filetype off
syntax off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
Plugin 'tpope/vim-fugitive'