-
Notifications
You must be signed in to change notification settings - Fork 0
/
.exrc
51 lines (51 loc) · 1.68 KB
/
.exrc
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
if &cp | set nocp | endif
map Q gq
nnoremap <silent> \p :call conque_gdb#print_word(expand("<cword>"))
nnoremap <silent> \t :call conque_gdb#command("backtrace")
nnoremap <silent> \f :call conque_gdb#command("finish")
nnoremap <silent> \s :call conque_gdb#command("step")
nnoremap <silent> \n :call conque_gdb#command("next")
nnoremap <silent> \r :call conque_gdb#command("run")
nnoremap <silent> \c :call conque_gdb#command("continue")
nnoremap <silent> \b :call conque_gdb#toggle_breakpoint(expand("%:p"), line("."))
let s:cpo_save=&cpo
set cpo&vim
vmap gx <Plug>NetrwBrowseXVis
nmap gx <Plug>NetrwBrowseX
vnoremap <silent> <Plug>NetrwBrowseXVis :call netrw#BrowseXVis()
nnoremap <silent> <Plug>NetrwBrowseX :call netrw#BrowseX(expand((exists("g:netrw_gx")? g:netrw_gx : '<cfile>')),netrw#CheckIfRemote())
nnoremap <silent> <F11> :call conque_term#exec_file()
inoremap u
let &cpo=s:cpo_save
unlet s:cpo_save
set background=dark
set backspace=indent,eol,start
set cindent
set display=truncate
set expandtab
set fileencodings=ucs-bom,utf-8,default,latin1
set helplang=en
set history=200
set hlsearch
set incsearch
set langnoremap
set nolangremap
set laststatus=2
set mouse=a
set nrformats=bin,hex
set printoptions=paper:a4
set ruler
set runtimepath=~/.vim,/var/lib/vim/addons,/usr/share/vim/vimfiles,/usr/share/vim/vim80,/usr/share/vim/vimfiles/after,/var/lib/vim/addons/after,~/.vim/after
set scrolloff=5
set shiftwidth=2
set showcmd
set softtabstop=2
set suffixes=.bak,~,.swp,.o,.info,.aux,.log,.dvi,.bbl,.blg,.brf,.cb,.ind,.idx,.ilg,.inx,.out,.toc
set switchbuf=useopen,usetab
set tabstop=2
set textwidth=80
set ttimeout
set ttimeoutlen=100
set wildmenu
set window=37
" vim: set ft=vim :