-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vimrc
129 lines (92 loc) · 2.02 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
" Don't try to be vi compatible
set nocompatible
let mapleader =" "
" Helps force plugins to load correctly when it is turned back on below
filetype off
" TODO: Load plugins here (pathogen or vundle)
" Turn on syntax highlighting
syntax on
" For plugins to load correctly
filetype plugin indent on
" TODO: Pick a leader key
let mapleader = " "
" Security
set modelines=0
" Show line numbers
set number
" Show file stats
set ruler
" No bell
set belloff=all
" Encoding
set encoding=utf-8
" Whitespace
set wrap
set textwidth=79
set formatoptions=tcqrn1
set tabstop=2
set shiftwidth=2
set softtabstop=2
set expandtab
set noshiftround
" Cursor motion
set scrolloff=3
set backspace=indent,eol,start
set matchpairs+=<:> " use % to jump between pairs
runtime! macros/matchit.vim
" Move up/down editor lines
nnoremap j gj
nnoremap k gk
" Allow hidden buffers
set hidden
" Rendering
set ttyfast
" Status bar
set laststatus=2
" Last line
set showmode
set showcmd
" Searching
nnoremap / /\v
vnoremap / /\v
set hlsearch
set incsearch
set ignorecase
set smartcase
set showmatch
map <leader><space> :let @/=''<cr> " clear search
nnoremap ; :
nnoremap : ;
" Quit file
nnoremap <leader>q :q<cr>
" Save
nnoremap <leader>w :w<cr>
" Visualize tabs and newlines
set listchars=tab:▸\ ,eol:¬
"
" Toggle tabs and EOL
nnoremap <leader>l :set list!<CR>
call plug#begin()
" Shorthand notation; fetches https://github.com/junegunn/vim-easy-align
Plug 'junegunn/vim-easy-align'
" On-demand loading
Plug 'preservim/nerdtree', { 'on': 'NERDTreeToggle' }
" FZF
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
Plug 'fenetikm/falcon'
" Color scheme
Plug 'lighthaus-theme/vim-lighthaus'
" Unmanaged plugin (manually installed and updated)
" Plug '~/my-prototype-plugin'
call plug#end()
" NerdTree
nnoremap <leader><tab> :NERDTreeToggle<cr>
" FZF
nnoremap <leader>f :Files<cr>
nnoremap <leader>b :Buffers<cr>
nnoremap <leader>rg :Rg<cr>
" Source .vimrc
map <leader>so :source ~/.vimrc<cr>
" Color scheme (terminal)
colorscheme falcon