-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
87 lines (69 loc) · 2.14 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
set nocompatible " required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" let Vundle manage Vundle, required
Plugin 'gmarik/Vundle.vim'
" Add all your plugins here (note older versions of Vundle used Bundle instead of Plugin)
"Plugin 'tmhedberg/SimpylFold'
Plugin 'vim-scripts/indentpython.vim'
"Bundle 'Valloric/YouCompleteMe'
"Plugin 'vim-ruby/vim-ruby'
"Plugin 'tpope/Vim-Rails'
Plugin 'scrooloose/NerdTree'
Plugin 'pangloss/vim-javascript'
Plugin 'leafgarland/typescript-vim'
Plugin 'maxmellon/vim-jsx-pretty'
Plugin 'leshill/vim-json'
"Plugin 'altercation/vim-colors-solarized'
Plugin 'jiangmiao/auto-pairs'
Plugin 'rust-lang/rust.vim'
Plugin 'mattn/emmet-vim'
Plugin 'stephpy/vim-yaml'
Plugin 'guns/vim-clojure-static'
Plugin 'luochen1990/rainbow'
Plugin 'guns/vim-sexp'
Plugin 'ziglang/zig.vim'
Plugin 'elixir-editors/vim-elixir'
Plugin 'junegunn/vim-easy-align'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
"set omnifunc=syntaxcomplete#Complete
set splitbelow
set splitright
" split navigations
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
" Enable folding with the spacebar
"nnoremap <space> za
" Highlight search set
set hlsearch
" Highlight the match for the string while you are typing it
set incsearch
" pangloss/vim-javascript settings:
let g:javascript_plugin_flow = 1
" Absolute and relative line numbers
set number relativenumber
" Solarized color scheme
syntax on
let g:solarized_termincolors=256
set t_Co=256
"set background=dark
"colorscheme koehler
colorscheme pablo
" 'tmhedberg/SimpylFold'
"let g:SimpylFold_docstring_preview=1
" luochen1990/rainbow
" set to 0 if you want to enable it later via :RainbowToggle
let g:rainbow_active = 1
" Start interactive EasyAlign in visual mode (e.g. vipga)
xmap ga <Plug>(EasyAlign)
" Start interactive EasyAlign for a motion/text object (e.g. gaip)
nmap ga <Plug>(EasyAlign)