Skip to content

Commit eab054e

Browse files
authored
Add .vimrc file
0 parents  commit eab054e

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.vimrc

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
set nocompatible
2+
filetype off
3+
4+
set noswapfile
5+
let python_highlight_all=1
6+
syntax on
7+
set nu
8+
9+
" IMPORTANT: :help Ncm2PopupOpen for more information
10+
set completeopt=noinsert,menuone,noselect
11+
12+
call plug#begin()
13+
Plug 'preservim/nerdtree'
14+
Plug 'dense-analysis/ale'
15+
Plug 'ncm2/ncm2'
16+
Plug 'roxma/nvim-yarp'
17+
Plug 'ncm2/ncm2-bufword'
18+
Plug 'ncm2/ncm2-path'
19+
call plug#end()
20+
21+
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
22+
Plug 'junegunn/fzf.vim'
23+
24+
set rtp+=~/.vim/bundle/Vundle.vim
25+
call vundle#begin()
26+
Plugin 'Vimjas/vim-python-pep8-indent'
27+
Plugin 'kien/ctrlp.vim'
28+
Plugin 'davidhalter/jedi-vim'
29+
Plugin 'vim-airline/vim-airline'
30+
Plugin 'vim-airline/vim-airline-themes'
31+
call vundle#end()

0 commit comments

Comments
 (0)