-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
72 lines (57 loc) · 1.89 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
" Keep Plugin commands between vundle#begin/end.
" plugin on GitHub repo
Plugin 'tpope/vim-fugitive'
" The sparkup vim script is in a subdirectory of this repo called vim.
" Pass the path to set the runtimepath properly.
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
" Check sintax on save
Plugin 'vim-syntastic/syntastic'
" Filesystem nav
Plugin 'preservim/nerdtree'
" Autocompletion (YCM)
Bundle 'Valloric/YouCompleteMe'
" Nice bottom line
Plugin 'vim-airline/vim-airline'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
syntax on "duh
colorscheme molokai "https://github.com/tomasr/molokai
set clipboard=unnamed "System clipboard
set encoding=utf-8 "Support for Python3 files
set mouse=a "mouse input
set backspace=2
set nu "line numbering
set background=dark
set cursorline "indicate line
set showmatch "match brachkets
"See https://realpython.com/vim-and-python-a-match-made-in-heaven/
"Screen split navigation
"https://linuxhint.com/how-to-use-vim-split-screen/s
nnoremap <C-J> <C-W><C-J>
nnoremap <C-K> <C-W><C-K>
nnoremap <C-L> <C-W><C-L>
nnoremap <C-H> <C-W><C-H>
" Enable folding
set foldmethod=indent
set foldlevel=99
" PEP 8 Indents
au BufNewFile, BufRead *.py
\ set tabstop=4
\ set softtabstop=4
\ set shiftwidth=4
\ set textwidth=79
\ set expandtab
\ set autoindent
\ set fileformat=unix
" Key maps
map <C-e> :NERDTreeToggle<CR>