-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
36 lines (31 loc) · 858 Bytes
/
.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
set number
set mouse=a
set numberwidth=1
set clipboard=unnamedplus
syntax on
set showcmd
set ruler
set cursorline
set encoding=UTF-8
set showmatch
set termguicolors
set sw=2
set relativenumber
so ~/.vim/plugins.vim
so ~/.vim/plugin-config.vim
so ~/.vim/maps.vim
colorscheme gruvbox
map <Leader>F :call fzf#vim#ag(expand('<cword>'))<kEnter>
"let g:material_style = 'darker'
"colorscheme material
highlight Normal ctermbg=NONE
set laststatus=2
set noshowmode
set listchars=tab:\|\ ,trail:• list
au BufNewFile,BufRead *.html set filetype=htmldjango
lua require'colorizer'.setup()
"" Searching
set hlsearch " highlight matches
set incsearch " incremental searching
set ignorecase " searches are case insensitive...
set smartcase " ... unless they contain at least one capital letter