-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
52 lines (46 loc) · 1.07 KB
/
.vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
set ttyfast
set showmode
set showcmd
set title
set number
set hidden
set tabstop=2
set softtabstop=2
set sw=2
" This is what files look like
set ffs=unix,dos,mac
" Update find path to search subdirectories
set path=$PWD/**
" No backups
set nobackup
set nowritebackup
set nowb
set noswapfile
" Keep lots of history/undo
set undolevels=1000
" Files to ignore
" Python
set wildignore+=*.pyc,*.pyo,*/__pycache__/*
" Erlang
set wildignore+=*.beam
" Temp files
set wildignore+=*.swp,~*
" Archives
set wildignore+=*.zip,*.tar
set t_Co=256
call plug#begin('/home/cjbaccus/.vim/plugins')
Plug 'vimwiki/vimwiki'
Plug 'alvan/vim-closetag'
Plug 'http://github.com/tpope/vim-surround' "Surrounding ysw)
Plug 'https://github.com/preservim/nerdtree' "NerdTree
Plug 'https://github.com/rafi/awesome-vim-colorschemes' "Retro Scheme
Plug 'glench/vim-jinja2-syntax' "Jinja2-syntax
Plug 'preservim/NERDTree'
Plug 'vim-arline/vim-airline'
Plug 'Yggdroot/indentLine'
" Plug 'https://github.com/pedrohdz/vim-yaml-folds'
Plug 'dense-analysis/ale'
call plug#end()
:set relativenumber
:set autoindent
:set mouse=a