📝 add vim config
This commit is contained in:
parent
bb324ecc28
commit
957b4065f7
1 changed files with 21 additions and 0 deletions
|
|
@ -21,6 +21,27 @@ cask "clickup"
|
|||
cask "visual-studio-code"
|
||||
```
|
||||
|
||||
### `.vimrc`
|
||||
|
||||
https://github.com/VundleVim/Vundle.vim#quick-start
|
||||
```
|
||||
set nocompatible " be iMproved, required
|
||||
filetype off " required
|
||||
|
||||
set rtp+=~/.vim/bundle/Vundle.vim
|
||||
call vundle#begin()
|
||||
|
||||
Plugin 'VundleVim/Vundle.vim'
|
||||
Plugin 'tpope/vim-fugitive'
|
||||
Plugin 'editorconfig/editorconfig-vim'
|
||||
|
||||
" remeber to call `:PluginInstall` after changing
|
||||
|
||||
" All of your Plugins must be added before the following line
|
||||
call vundle#end() " required
|
||||
filetype plugin indent on " required
|
||||
```
|
||||
|
||||
# Linux
|
||||
|
||||
> Coming Soon
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue