Quick way to initialize my Vim and my tmux
Included .vimrc:
https://github.com/amix/vimrc/blob/master/vimrcs/basic.vim
Included Plugins:
Plugin 'VundleVim/Vundle.vim' " Plugin manager
" My plugin
" Theme
Plugin 'flazz/vim-colorschemes'
Plugin 'NLKNguyen/papercolor-theme'
" Auto close brackets
Plugin 'Raimondi/delimitMate'
" File explorer
Plugin 'scrooloose/nerdtree'
Others settings:
" Plugin settings
autocmd BufNewFile,BufReadPost *.md set filetype=markdown
colorscheme gruvbox
" change to dark if you want to use dark mode, however some colorscheme may only
" support either light or dark mode only
set background=dark
" Ctrl+N to toggle nerdtree
map <C-n> :NERDTreeToggle<CR>
" [+] Line number
set nu
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
wget https://raw.githubusercontent.com/crucialbit/vimrc/master/.vimrc -O ~/.vimrc
wget https://raw.githubusercontent.com/crucialbit/my-conf/master/.tmux.conf -O ~/.tmux.conf
" Run in vim to install plugins
:PluginInstall
You can use all these color schemes after installing the plugins
Some color schemes I recommend:
- Light & Dark
gruvbox
- Light
PaperColor
- Dark
Monokai
Temp
:set formatoptions-=cro
General
autocmd FileType * setlocal formatoptions-=c formatoptions-=r formatoptions-=o