📝 add vim config

This commit is contained in:
dannydannydanny 2021-10-05 12:45:52 +02:00 committed by GitHub
parent bb324ecc28
commit 957b4065f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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