vim/vimrc
Steins7 e5be9b7d75 Switched from letex-preview to vimtex
+ added vimtex as submodule
* configured vim fro vimtex
2021-07-03 16:07:21 +02:00

66 lines
1.2 KiB
VimL

"pathogen
runtime bundle/vim-pathogen/autoload/pathogen.vim
execute pathogen#infect()
"file type detection
filetype on
"ligne number
set number
"coloration
syntax on
set cursorline
"highlight ColorColumn ctermbg=DarkYellow
let g:spacegray_use_italics=1
colorscheme spacegray
"let g:minimap_highlight='Visual'
"miscellaneous
set backspace=indent,eol,start
set tabstop=4
set shiftwidth=4
set shiftround
set ruler
set nocompatible
"inclomplete commands
set showcmd
"indent
filetype plugin indent on
set autoindent
set smartindent
set cindent
set pastetoggle=<F5>
"matching parenthesis
set showmatch
"escape sequence
set ttimeout
set timeout timeoutlen=300
let mapleader=','
"mapping
nmap <silent> <S-A-Up> :wincmd k<CR>
nmap <silent> <^[[1;4D> : wincmd h<CR>
nmap <silent> <S-A-Down> :wincmd j<CR>
nmap <silent> <S-A-Left> :wincmd h<CR>
nmap <silent> <S-A-Right> :wincmd l<CR>
nmap <silent> <C-l> :noh<CR>
nmap <silent> <F6> gg=G<C-o><C-o><CR>
nmap <silent> <C-t> :NERDTreeToggle<CR>
"tags
set tags=tags;
set autochdir
"headers
let g:header_auto_add_header=0
let g:header_field_author='Steins7'
let g:header_field_author_email='steinsset@gmail.com'
let g:header_field_license_id='GNU'
nmap <silent> <F4> :AddHeader<CR>