-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.vim
More file actions
35 lines (33 loc) · 827 Bytes
/
init.vim
File metadata and controls
35 lines (33 loc) · 827 Bytes
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
" nvim
" config file: ~/.config/nvim/init.vim
" plugins autoload ~/.local/share/nvim/site/autoload/
call plug#begin('~/.vim/plugged')
Plug 'https://github.com/joshdick/onedark.vim'
Plug 'https://github.com/jiangmiao/auto-pairs'
Plug 'https://github.com/vim-airline/vim-airline'
Plug 'https://github.com/vim-airline/vim-airline-themes'
Plug 'https://github.com/lervag/vimtex'
call plug#end()
set number
set relativenumber
set cursorline
set ts=8
syntax on
set noshowmode
set noswapfile
set hlsearch
set incsearch
set bg=dark
colorscheme onedark
set backspace=indent,eol,start
filetype plugin indent on
set grepprg=grep\ -nH\ $*
let g:Tex_DefaultTargetFormat='pdf'
noremap <Up> ""
noremap! <Up> <Esc>
noremap <Down> ""
noremap! <Down> <Esc>
noremap <Left> ""
noremap! <Left> <Esc>
noremap <Right> ""
noremap! <Right> <Esc>