-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
59 lines (57 loc) · 1.84 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
"call plug#begin()
"" The default plugin directory will be as follows:
"" - Vim (Linux/macOS): '~/.vim/plugged'
"" - Vim (Windows): '~/vimfiles/plugged'
"" - Neovim (Linux/macOS/Windows): stdpath('data') . '/plugged'
"" You can specify a custom plugin directory by passing it as the argument
"" - e.g. `call plug#begin('~/.vim/plugged')`
"" - Avoid using standard Vim directory names like 'plugin'
"
"" Make sure you use single quotes
"
"" Shorthand notation; fetches https://github.com/junegunn/vim-easy-align
"Plug 'junegunn/vim-easy-align'
"
"" Any valid git URL is allowed
"Plug 'https://github.com/junegunn/vim-github-dashboard.git'
"
"" Multiple Plug commands can be written in a single line using | separators
"Plug 'SirVer/ultisnips' | Plug 'honza/vim-snippets'
"
"" On-demand loading
"Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
"Plug 'tpope/vim-fireplace', { 'for': 'clojure' }
"
"" Using a non-default branch
"Plug 'rdnetto/YCM-Generator', { 'branch': 'stable' }
"
"" Using a tagged release; wildcard allowed (requires git 1.9.2 or above)
"Plug 'fatih/vim-go', { 'tag': '*' }
"
"" Plugin options
"Plug 'nsf/gocode', { 'tag': 'v.20150303', 'rtp': 'vim' }
"
"" Plugin outside ~/.vim/plugged with post-update hook
"Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
"
"" Unmanaged plugin (manually installed and updated)
"Plug '~/my-prototype-plugin'
"
"" Initialize plugin system
"" - Automatically executes `filetype plugin indent on` and `syntax enable`.
"call plug#end()
"" You can revert the settings after the call like so:
"" filetype indent off " Disable file-type-specific indentation
"" syntax off " Disable syntax highlighting
"
" Basic Settings
filetype plugin indent on
syntax on
set number relativenumber
set ignorecase
set mouse=a
set incsearch
set tabstop=4
set shiftwidth=4
" Keymaps
vmap <C-c> "+y