Skip to content

Instantly share code, notes, and snippets.

@nathanharper
Created January 3, 2025 13:25
Show Gist options
  • Save nathanharper/35b08308f4547516ed316e728f52546e to your computer and use it in GitHub Desktop.
Save nathanharper/35b08308f4547516ed316e728f52546e to your computer and use it in GitHub Desktop.
minimal vimrc
" vim-plug setup
call plug#begin()
Plug 'altercation/vim-colors-solarized'
Plug 'tpope/vim-surround'
Plug 'scrooloose/nerdcommenter'
Plug 'dkprice/vim-easygrep'
Plug 'ctrlpvim/ctrlp.vim'
Plug 'preservim/nerdtree'
Plug 'pangloss/vim-javascript'
Plug 'plasticboy/vim-markdown'
call plug#end()
" indenting
filetype plugin indent on
set tabstop=4
set shiftwidth=4
set expandtab
" theme
syntax enable
set background=dark
" colorscheme solarized
" ctrlp
let g:ctrlp_custom_ignore = {
\ 'dir': '\v[\/](\.git|node_modules|vendor)$',
\ 'file': '\.log$\',
\ }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment