-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
57 lines (45 loc) · 1.22 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
52
53
54
55
source $HOME/.vim/themes/airline.vim
syntax on
set noerrorbells
set tabstop=4 softtabstop=4
set shiftwidth=4
set expandtab
set smartindent
set nu
set smartcase
set noswapfile
set nobackup
set incsearch
set hidden
set wildmenu
set path+=**
set wildignore+=**/node_modules/**
set relativenumber
set nohlsearch
highlight VertSplit cterm=NONE
set fillchars+=vert:\
highlight Pmenu ctermfg=white ctermbg=black
highlight PmenuSel ctermfg=white ctermbg=gray
highlight EndOfBuffer ctermfg=black ctermbg=black
map <C-f> :Files<CR>
set complete-=t
set complete-=i
" use <tab> for trigger completion and navigate to the next complete item
""""function! s:check_back_space() abort
"""" let col = col('.') - 1
"""" return !col || getline('.')[col - 1] =~ '\s'
""""endfunction
""""inoremap <silent><expr> <Tab>
"""" \ pumvisible() ? "\<C-n>" :
"""" \ <SID>check_back_space() ? "\<Tab>" :
"""" \ coc#refresh()
call plug#begin('~/.vim/plugged')
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
Plug 'tpope/vim-fugitive'
Plug 'vim-utils/vim-man'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
"Plug 'maxboisvert/vim-simple-complete'
Plug 'ycm-core/YouCompleteMe'
call plug#end()