summaryrefslogtreecommitdiff
path: root/vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim')
-rw-r--r--vim/after/ftplugin/tex/folding.vim34
-rw-r--r--vim/after/ftplugin/vim/folding.vim25
-rw-r--r--vim/after/syntax/cpp.vim3
-rw-r--r--vim/after/syntax/cpp.vim~0
-rw-r--r--vim/after/syntax/tex.vim6
-rw-r--r--vim/after/syntax/tex.vim~6
-rw-r--r--vim/colors/mine.vim29
-rw-r--r--vim/colors/mine.vim~29
-rw-r--r--vim/mySnippets/python.snippets0
-rw-r--r--vim/mySnippets/vim.snippets3
-rw-r--r--vim/vimrc256
11 files changed, 391 insertions, 0 deletions
diff --git a/vim/after/ftplugin/tex/folding.vim b/vim/after/ftplugin/tex/folding.vim
new file mode 100644
index 0000000..2e8b612
--- /dev/null
+++ b/vim/after/ftplugin/tex/folding.vim
@@ -0,0 +1,34 @@
+function! TexFolds()
+ let thisline = getline(v:lnum)
+ if match(thisline,'^\\chapter') >= 0
+ return ">1"
+ elseif match(thisline,'^\\section') >= 0
+ return ">1"
+ elseif match(thisline,'^\\subsection') >=0
+ return ">1"
+ elseif match(thisline,'^\\subsubsection') >=0
+ return ">1"
+ else
+ return "="
+ endif
+endfunction
+
+function! TexFoldText()
+ let startline = getline(v:foldstart)
+ let title = substitute(startline,'^.*{\(.*\)}.*$','\1',"")
+ if match(startline,'^\\chapter') >= 0
+ return '*' . title . ''
+ elseif match(startline,'^\\section') >= 0
+ return ' # ' . title
+ elseif match(startline,'^\\subsection') >=0
+ return ' ## ' . title
+ elseif match(startline,'^\\subsubsection') >=0
+ return ' ### ' . title
+ else
+ echom "Error, fold not recognized"
+ endif
+endfunction
+
+setlocal foldmethod=expr
+setlocal foldexpr=TexFolds()
+setlocal foldtext=TexFoldText()
diff --git a/vim/after/ftplugin/vim/folding.vim b/vim/after/ftplugin/vim/folding.vim
new file mode 100644
index 0000000..773b38e
--- /dev/null
+++ b/vim/after/ftplugin/vim/folding.vim
@@ -0,0 +1,25 @@
+function! VimFolds()
+ let thisline = getline(v:lnum)
+ if match(thisline,'^"" ') >= 0
+ return ">1"
+ elseif match(thisline,'^" ') >=0
+ return ">1"
+ else
+ return "="
+ endif
+endfunction
+
+function! VimFoldText()
+ let startline = getline(v:foldstart)
+ if match(startline,'^"" ') >= 0
+ let title = substitute(startline,'^"" \(.*\)$','\1',"")
+ return '# ' . title
+ elseif match(startline,'^" ') >=0
+ let title = substitute(startline,'^" \(.*\)$','\1',"")
+ return ' ## ' .title
+ endif
+endfunction
+
+setlocal foldmethod=expr
+setlocal foldexpr=VimFolds()
+setlocal foldtext=VimFoldText()
diff --git a/vim/after/syntax/cpp.vim b/vim/after/syntax/cpp.vim
new file mode 100644
index 0000000..4da741d
--- /dev/null
+++ b/vim/after/syntax/cpp.vim
@@ -0,0 +1,3 @@
+syntax keyword mPigroup pi
+hi def link mPigroup Todo
+
diff --git a/vim/after/syntax/cpp.vim~ b/vim/after/syntax/cpp.vim~
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/vim/after/syntax/cpp.vim~
diff --git a/vim/after/syntax/tex.vim b/vim/after/syntax/tex.vim
new file mode 100644
index 0000000..a40cc30
--- /dev/null
+++ b/vim/after/syntax/tex.vim
@@ -0,0 +1,6 @@
+syn match texMathSymbol '\\arr\>' contained conceal cchar=←
+syn match texMathSymbol '\\,' contained conceal cchar=
+syn match texMathSymbol '\\mathcal' contained conceal cchar=
+syn match texMathSymbol '\\text' contained conceal cchar=
+syn match texMathSymbol '\\mathbb' contained conceal cchar=
+syn match texMathSymbol '\\quad' contained conceal cchar=
diff --git a/vim/after/syntax/tex.vim~ b/vim/after/syntax/tex.vim~
new file mode 100644
index 0000000..4e1d112
--- /dev/null
+++ b/vim/after/syntax/tex.vim~
@@ -0,0 +1,6 @@
+syn match texMathSymbol '\\arr\>' contained conceal cchar=←
+syn match texMathSymbol '\\,' contained conceal cchar=
+syn match texMathSymbol '\\mathcal' contained conceal cchar=
+syn match texMathSymbol '\\text' contained conceal cchar=
+syn match texMathSymbol '\\mathbb' contained conceal cchar=
+syn match texMathSymbol '\\quad' contained conceal cchar=
diff --git a/vim/colors/mine.vim b/vim/colors/mine.vim
new file mode 100644
index 0000000..653682e
--- /dev/null
+++ b/vim/colors/mine.vim
@@ -0,0 +1,29 @@
+" Vim color file
+" Maintainer: Urbain
+" Last Change: 2002/10/14 Mon 16:41.
+" version: 1.0
+" This color scheme uses a light background.
+
+set background=light
+hi clear
+if exists("syntax_on")
+ syntax reset
+endif
+
+let colors_name = "mine"
+
+" Syntax group
+hi Comment gui=none guifg=#af5f00
+hi Normal guibg=white guifg=Black
+hi Type gui=none guifg=#005f00
+hi Statement gui=none guifg=#5f0000
+hi Special guifg=Black
+hi Constant guifg=Gray
+hi Error guifg=Red guibg=White
+hi Preproc guifg=Blue "\end
+hi Constant guifg=Green "\ $$
+hi Identifier guifg=Blue "\begin
+hi LineNr gui=none guifg=Gray
+hi FoldColumn guibg=#F5F4FD
+hi Todo guibg=white gui=underline,italic guifg=Red
+hi Conceal guibg=White guifg=DarkGreen
diff --git a/vim/colors/mine.vim~ b/vim/colors/mine.vim~
new file mode 100644
index 0000000..653682e
--- /dev/null
+++ b/vim/colors/mine.vim~
@@ -0,0 +1,29 @@
+" Vim color file
+" Maintainer: Urbain
+" Last Change: 2002/10/14 Mon 16:41.
+" version: 1.0
+" This color scheme uses a light background.
+
+set background=light
+hi clear
+if exists("syntax_on")
+ syntax reset
+endif
+
+let colors_name = "mine"
+
+" Syntax group
+hi Comment gui=none guifg=#af5f00
+hi Normal guibg=white guifg=Black
+hi Type gui=none guifg=#005f00
+hi Statement gui=none guifg=#5f0000
+hi Special guifg=Black
+hi Constant guifg=Gray
+hi Error guifg=Red guibg=White
+hi Preproc guifg=Blue "\end
+hi Constant guifg=Green "\ $$
+hi Identifier guifg=Blue "\begin
+hi LineNr gui=none guifg=Gray
+hi FoldColumn guibg=#F5F4FD
+hi Todo guibg=white gui=underline,italic guifg=Red
+hi Conceal guibg=White guifg=DarkGreen
diff --git a/vim/mySnippets/python.snippets b/vim/mySnippets/python.snippets
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/vim/mySnippets/python.snippets
diff --git a/vim/mySnippets/vim.snippets b/vim/mySnippets/vim.snippets
new file mode 100644
index 0000000..41f9024
--- /dev/null
+++ b/vim/mySnippets/vim.snippets
@@ -0,0 +1,3 @@
+snippet test "Description" b
+tste
+endsnippet
diff --git a/vim/vimrc b/vim/vimrc
new file mode 100644
index 0000000..1179bd9
--- /dev/null
+++ b/vim/vimrc
@@ -0,0 +1,256 @@
+"" 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:UltiSnipsListSnippets="<c-l>"
+let g:UltiSnipsEditSplit="horizontal"
+let g:UltiSnipsSnippetsDir="~/.vim/mySnippets"
+let g:UltiSnipsSnippetDirectories=['UltiSnips', 'mySnippets']
+let g:ctrlp_open_new_file = 't'
+noremap <c-h> :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=0
+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
+
+
+" Case and spell
+set nospell
+set smartcase
+set ignorecase
+
+" General
+set noautochdir
+set wildmenu
+set cpoptions+=I
+set encoding=utf-8
+
+"" Colorscheme
+function! UpdateColorscheme()
+ try | colorscheme solarized | catch | endtry
+ if strftime("%H") >= 9 && strftime("%H") < 18
+ set background=light
+ else
+ set background=dark
+ endif
+
+ echom
+
+ hi Cursor guifg=white guibg=blue
+ hi iCursor guifg=black guibg=green
+ hi! link conceal normal
+ hi! link folded comment
+endfunction
+autocmd! BufNewFile,BufRead,BufWrite * :call UpdateColorscheme()
+
+"" 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()
+
+
+"" 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
+