Created
January 3, 2025 13:25
-
-
Save nathanharper/35b08308f4547516ed316e728f52546e to your computer and use it in GitHub Desktop.
minimal vimrc
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
" 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