Created
March 2, 2020 13:28
-
-
Save willdowglas/b035e0ba3d50a996fc33df1c97b63be1 to your computer and use it in GitHub Desktop.
My vim config file
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
| 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> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment