Skip to content

Instantly share code, notes, and snippets.

@willdowglas
Created March 2, 2020 13:28
Show Gist options
  • Select an option

  • Save willdowglas/b035e0ba3d50a996fc33df1c97b63be1 to your computer and use it in GitHub Desktop.

Select an option

Save willdowglas/b035e0ba3d50a996fc33df1c97b63be1 to your computer and use it in GitHub Desktop.

Revisions

  1. willdowglas created this gist Mar 2, 2020.
    30 changes: 30 additions & 0 deletions .vimrc
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,30 @@
    execute pathogen#infect()

    filetype plugin indent on
    syntax enable
    set background=dark
    let g:solarized_termtrans = 1
    colorscheme solarized

    set number relativenumber
    set linebreak
    set showbreak=+++
    set textwidth=80
    set showmatch
    set visualbell
    set hlsearch
    set smartcase
    set ignorecase
    set incsearch
    set autoindent
    set shiftwidth=2
    set smartindent
    set smarttab
    set softtabstop=2
    set ruler
    set backspace=indent,eol,start
    set rtp+=/usr/local/opt/fzf

    map 0 ^
    map <C-n> :NERDTreeToggle<CR>