-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vimrc
More file actions
40 lines (33 loc) · 769 Bytes
/
.vimrc
File metadata and controls
40 lines (33 loc) · 769 Bytes
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
syntax on
" leader key
let mapleader = " "
" Pluings
source ~/.vim/vundle.vim
source ~/.vim/commentry.vim
source ~/.vim/coc.vim
source ~/.vim/vim-go.vim
source ~/.vim/vim-go-debug.vim
source ~/.vim/autoindent.vim
source ~/.vim/vim-airline.vim
source ~/.vim/auto-pairs.vim
source ~/.vim/vim-surround.vim
source ~/.vim/debug-mappings.vim
source ~/.vim/ultisnips.vim
source ~/.vim/fzf.vim
source ~/.vim/vim-qf-ll.vim
source ~/.vim/vim-bookmarks.vim
source ~/.vim/typescript.vim
" highlight search results
set hlsearch
" disbale .swp file creation/check
set noswapfile
" set tab
set tabstop=4
set shiftwidth=4
set expandtab
set autoindent
set smartindent
" show linenumber
set nu
" fixes unable to delete past point of insert issue
set backspace=indent,eol,start