-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdot_vimrc
44 lines (36 loc) · 782 Bytes
/
dot_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
" Get the defaults
source $VIMRUNTIME/defaults.vim
" Custom settings start here
syntax on
" Enable filetype plugins
filetype on
filetype plugin on
filetype indent on
set number
set wildmenu
set incsearch
set smartcase
set ignorecase
set number
set expandtab
set hlsearch
set nobackup
" vim plug idk
call plug#begin()
" Copilot
Plug 'github/copilot.vim'
Plug 'w0rp/ale'
Plug 'omnisharp/omnisharp-vim'
" Plug 'valloric/youcompleteme'
Plug 'vim-airline/vim-airline'
Plug 'junegunn/fzf'
Plug 'leafgarland/typescript-vim'
Plug 'pangloss/vim-javascript'
Plug 'tpope/vim-commentary'
Plug 'tpope/vim-surround'
Plug 'kien/rainbow_parentheses.vim'
Plug 'sheerun/vim-polyglot'
Plug 'SirVer/ultisnips'
Plug 'preservim/nerdcommenter'
call plug#end()
let g:UltiSnipsExpandTrigger="<c-S>"