Skip to content

Instantly share code, notes, and snippets.

@etcadinfinitum
Last active July 20, 2018 23:12
Show Gist options
  • Save etcadinfinitum/7fda4c7c186b09683f9d2f02882c5cda to your computer and use it in GitHub Desktop.
Save etcadinfinitum/7fda4c7c186b09683f9d2f02882c5cda to your computer and use it in GitHub Desktop.
for when i press space or the laptop gets stolen again
" run pathogen
execute pathogen#infect()
" turn on 256-color terminal where supported
set t_Co=256
" favorite color scheme seen thus far
" to get, clone this: https://github.com/thayerwilliams/vimbrant.git
colorscheme vimbrant
" get syntax always
syntax on
" replace tabs with 4 spaces
set tabstop=4
set expandtab
" use both to get an absolute num in current line
" and relative nums elsewhere
set number relativenumber
" highlight search results syntax
set hlsearch
" get visual menu for tabbed options always
set wildmenu
" remap keys for split pane navigation (Chromebook!)
nnoremap <C-K> <C-W><C-K>
nnoremap <C-H> <C-W><C-H>
nnoremap <C-L> <C-W><C-L>
nnoremap <C-J> <C-W><C-J>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment