-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
55 lines (47 loc) · 1.53 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
autocmd!
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'
Plugin 'chr4/nginx.vim'
Plugin 'scrooloose/nerdtree'
Plugin 'chase/vim-ansible-yaml'
Plugin 'jwalton512/vim-blade'
Plugin 'posva/vim-vue'
Plugin 'leafgarland/typescript-vim'
Plugin 'othree/html5.vim'
Plugin 'editorconfig/editorconfig-vim'
Plugin 'tomasr/molokai'
Plugin 'tpope/vim-rails'
Plugin 'othree/yajs.vim'
Plugin 'maxmellon/vim-jsx-pretty'
Plugin 'editorconfig/editorconfig-vim'
Plugin 'hashivim/vim-hashicorp-tools'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
syntax on
set expandtab
set tabstop=2
set shiftwidth=2
set number
set cursorline
set cursorcolumn
" setting for scrooloose/nerdtree
let g:NERDTreeDirArrowExpandable = '>'
let g:NERDTreeDirArrowCollapsible = '>'
" set color
autocmd ColorScheme * highlight Visual term=reverse cterm=reverse ctermfg=193 ctermbg=16 gui=reverse guifg=#C4BE89 guibg=#000000
autocmd ColorScheme * highlight Comment ctermfg=215
colorscheme molokai
" backspace setting
set backspace=indent,eol,start
autocmd FileType ruby set dictionary=~/.vim/dict/ruby
autocmd FileType vue syntax sync fromstart
set clipboard+=unnamed
set noswapfile