summaryrefslogtreecommitdiff
path: root/.vimrc
diff options
context:
space:
mode:
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc252
1 files changed, 0 insertions, 252 deletions
diff --git a/.vimrc b/.vimrc
deleted file mode 100644
index ca1c063..0000000
--- a/.vimrc
+++ /dev/null
@@ -1,252 +0,0 @@
-"" Required by Vundle
-set nocompatible
-filetype off
-set rtp+=~/.vim/bundle/vundle/
-call vundle#rc()
-
-"" Plugins
-Plugin 'gmarik/vundle'
-Plugin 'LaTeX-Box-Team/latex-box'
-Plugin 'fugitive.vim'
-Plugin 'UltiSnips'
-Plugin 'kien/ctrlp.vim'
-Plugin 'tpope/vim-surround'
-Plugin 'scrooloose/nerdtree'
-Plugin 'tommcdo/vim-exchange'
-Plugin 'unimpaired.vim'
-Plugin 'Tabular'
-Plugin 'tComment'
-Plugin 'Gundo'
-Plugin 'altercation/vim-colors-solarized'
-Plugin 'honza/vim-snippets'
-
-filetype plugin indent on
-
-"" Configuration
-
-" UltiSnips
-let g:UltiSnipsExpandTrigger="<tab>"
-let g:UltiSnipsJumpForwardTrigger="<tab>"
-let g:UltiSnipsJumpBackwardTrigger="<s-tab>"
-let g:UltiSnipsEditSplit="horizontal"
-let g:UltiSnipsSnippetsDir="~/.vim/UltiSnips"
-let g:ctrlp_open_new_file = 't'
-noremap <c-tab> :UltiSnipsEdit<Return>
-
-" Latex-Box
-let g:tex_flavor='latex'
-let g:tex_conceal= 'adgm'
-let g:LatexBox_Folding=0
-
-" Gundo
-nnoremap <F5> :GundoToggle<cr>
-
-" Nerdtree
-nnoremap <F3> :NERDTreeToggle<cr>
-let NERDTreeIgnore=['\.pdf$', '\~$','\.toc$',
- \ '\.fls$','\.bbl$','\.blg$',
- \ '\.out$', '\.log$','\.aux$','\.sty$',
- \ '\.fdb_latexmk$', '\.synctex.gz$','\.latexmain$']
-
-" CTRL-P
-
-let g:ctrlp_map = '<c-p>'
-let g:ctrlp_by_filename = 1
-let g:ctrlp_working_path_mode = ''
-let g:ctrlp_show_hidden = 1
-
-"" Options
-
-" Tabs and indent
-set smartindent
-set nosmarttab
-set expandtab
-set tabstop=4
-set softtabstop=4
-set shiftwidth=4
-set autoindent
-set cindent
-
-" Folds
-set foldcolumn=0
-set foldenable
-set foldmethod=expr
-set foldlevel=0
-
-" Search
-set hlsearch
-set incsearch
-
-" Back up files
-set noswapfile
-set nowritebackup
-set undofile
-set undodir=/home/urbain/.vimundo/
-
-" Layout window
-set nonumber
-set ruler
-set showcmd
-set listchars=tab:▸\ ,eol:¬
-set fillchars=fold:\ ,vert:\ ,
-set showbreak=...
-set colorcolumn=0
-set scrolloff=3
-if has('gui_running')
- set t_Co=256
-else
- set t_Co=256
-endif
-set guitablabel=%N\ %t\ %M
-set showcmd
-
-" Layout text
-set wrap
-set linebreak
-set textwidth=0
-set conceallevel=2
-set guifont=Monaco\ 11
-
-" Colorscheme
-function! UpdateColorscheme()
- if strftime("%H") >= 9 && strftime("%H") < 18
- set background=light
- else
- set background=dark
- endif
-endfunction
-try | colorscheme solarized | catch | endtry
-call UpdateColorscheme()
-autocmd! BufNewFile,BufRead,BufWrite * :call UpdateColorscheme()
-
-" Case and spell
-set nospell
-set smartcase
-set ignorecase
-
-" General
-set noautochdir
-set wildmenu
-set cpoptions+=I
-set encoding=utf-8
-
-
-"" Custom mappings
-
-" Definition of leader and localleader
-let mapleader = "\\"
-let maplocalleader = "+"
-
-" Leader maps
-nmap <Space> <Leader>
-nmap <Leader>p <c-p>
-nmap <Leader>t <c-w>
-nnoremap <Leader>h :set hlsearch!<cr>
-nnoremap <Leader>n :set relativenumber!<cr>
-nnoremap <Leader>q :q!<cr>
-nnoremap <Leader>sv :source ~/.vimrc<cr>
-nnoremap <Leader>sc :source %
-nnoremap <Leader>w :w<cr>
-nnoremap <Leader>te :tabedit
-nnoremap <Leader>tn :tabnew<cr>
-nnoremap <Leader>to :tabonly<cr>
-
-" Other maps
-nnoremap <Return> o<Esc>
-nnoremap <s-Return> O<Esc>
-nnoremap J mzJ`z
-nnoremap - za
-nnoremap <c-y> 3<c-y>
-nnoremap <c-e> 3<c-e>
-
-nnoremap j gj
-nnoremap k gk
-nnoremap $ g$
-nnoremap ^ g^
-nnoremap gj j
-nnoremap gk k
-nnoremap g$ $
-nnoremap g^ ^
-
-vnoremap j gj
-vnoremap k gk
-vnoremap $ g$
-vnoremap ^ g^
-vnoremap gj j
-vnoremap gk k
-vnoremap g$ $
-vnoremap g^ ^
-
-" Convenient maps
-" nnoremap e j
-" nnoremap u k
-" nnoremap j e
-" nnoremap k u
-
-"" Latex
-nmap <buffer> <F2> <Plug>LatexChangeEnv
-let g:tex_fast=""
-
-" Synctex
-function! LatexEvinceSearch()
- execute "!cd " . LatexBox_GetTexRoot() . '; evince_vim_dbus.py EVINCE "`basename ' . LatexBox_GetOutputFile(). '`" ' . line('.') . ' "%:p"'
-endfun
-
-command! LatexEvinceSearch call LatexEvinceSearch()
-
-autocmd FileType tex map <F6> :silent LatexEvinceSearch <Return>
-autocmd Filetype tex call SetTexOptions()
-
-" Layout
-hi Cursor guifg=white guibg=blue
-hi iCursor guifg=black guibg=green
-hi! link conceal normal
-
-"" Functions
-function! Tex_ForwardSearchLaTeX()
- let cmd = 'evince_forward_search ' . fnamemodify(LatexBox_GetMainTexFile(), ":p:r") . '.pdf ' . line(".") . ' ' . expand("%:p")
- let output = system(cmd)
-endfunction
-
-function! SetTexOptions()
-
- inoremap (( \left(
- inoremap )) \right)
- inoremap {{ \left\{
- inoremap }} \right\}
- inoremap [[ \left[
- inoremap ]] \right]
- inoremap == \,=\,
- inoremap >> \,\geq\,
- inoremap << \,\leq\,
- inoremap ++ \,+\,
- inoremap -- \,-\,
-
- imap `a \alpha
- imap `b \beta
- imap `g \gamma
- imap `d \delta
- imap `e \varepsilon
- imap `z \zeta
- imap `h \eta
- imap `t \theta
- imap `i \iota
- imap `k \kappa
- imap `l \lambda
- imap `m \mu
- imap `n \nu
- imap `x \xi
- imap `r \rho
- imap `s \sigma
- imap `f \phi
- imap `p \pi
- imap `w \omega
-
-endfunction
-
-"" Autocommands
-augroup autorelead_vimrc
- au!
- au BufWritePost ~/.vimrc source ~/.vimrc
-augroup END
-