commit 3277b7a8c7165ce16f118f201680e667bbc2477f Author: mmk2410 Date: Sat Dec 5 15:28:57 2015 +0100 Initial commit diff --git a/mmk2410 b/mmk2410 new file mode 100644 index 0000000..6146b5a --- /dev/null +++ b/mmk2410 @@ -0,0 +1,18 @@ + __ + | | _______ __ __ __ ________ + | | |____ | | | | | | | | __ | + | | ___ | | | | | | | | | | | | + ______________ ______________ | |/ / ____| | | |___| | | | | | | | +| __ __ | | __ __ | | / | ____| |______ | | | | | | | +| | | | | | | | | | | | | \ | | | | | | | | | | +| | | | | | | | | | | | | |\ \ | |____ | | | | | |__| | +|__| |__| |__| |__| |__| |__| |__| \__\ |_______| |__| |__| |________| + +Marcel Kapfer (mmk2410) + +Software and web developer and designer + +marcel-kapfer.de +@mmk2410 +/mmk2410 ++MarcelMichaelKapfer diff --git a/vim/.netrwhist b/vim/.netrwhist new file mode 100644 index 0000000..d4a13b8 --- /dev/null +++ b/vim/.netrwhist @@ -0,0 +1,3 @@ +let g:netrw_dirhistmax =10 +let g:netrw_dirhist_cnt =1 +let g:netrw_dirhist_1='/home/mmk/web/blogger-preprocessor/assets' diff --git a/vim/autoload/pathogen.vim b/vim/autoload/pathogen.vim new file mode 100644 index 0000000..9bfd987 --- /dev/null +++ b/vim/autoload/pathogen.vim @@ -0,0 +1,347 @@ +" pathogen.vim - path option manipulation +" Maintainer: Tim Pope +" Version: 2.3 + +" Install in ~/.vim/autoload (or ~\vimfiles\autoload). +" +" For management of individually installed plugins in ~/.vim/bundle (or +" ~\vimfiles\bundle), adding `execute pathogen#infect()` to the top of your +" .vimrc is the only other setup necessary. +" +" The API is documented inline below. + +if exists("g:loaded_pathogen") || &cp + finish +endif +let g:loaded_pathogen = 1 + +" Point of entry for basic default usage. Give a relative path to invoke +" pathogen#interpose() (defaults to "bundle/{}"), or an absolute path to invoke +" pathogen#surround(). Curly braces are expanded with pathogen#expand(): +" "bundle/{}" finds all subdirectories inside "bundle" inside all directories +" in the runtime path. +function! pathogen#infect(...) abort + for path in a:0 ? filter(reverse(copy(a:000)), 'type(v:val) == type("")') : ['bundle/{}'] + if path =~# '^\%({\=[$~\\/]\|{\=\w:[\\/]\).*[{}*]' + call pathogen#surround(path) + elseif path =~# '^\%([$~\\/]\|\w:[\\/]\)' + call s:warn('Change pathogen#infect('.string(path).') to pathogen#infect('.string(path.'/{}').')') + call pathogen#surround(path . '/{}') + elseif path =~# '[{}*]' + call pathogen#interpose(path) + else + call s:warn('Change pathogen#infect('.string(path).') to pathogen#infect('.string(path.'/{}').')') + call pathogen#interpose(path . '/{}') + endif + endfor + call pathogen#cycle_filetype() + if pathogen#is_disabled($MYVIMRC) + return 'finish' + endif + return '' +endfunction + +" Split a path into a list. +function! pathogen#split(path) abort + if type(a:path) == type([]) | return a:path | endif + if empty(a:path) | return [] | endif + let split = split(a:path,'\\\@]','\\&','') + endif +endfunction + +" Like findfile(), but hardcoded to use the runtimepath. +function! pathogen#runtime_findfile(file,count) abort "{{{1 + let rtp = pathogen#join(1,pathogen#split(&rtp)) + let file = findfile(a:file,rtp,a:count) + if file ==# '' + return '' + else + return fnamemodify(file,':p') + endif +endfunction + +" Section: Deprecated + +function! s:warn(msg) abort + echohl WarningMsg + echomsg a:msg + echohl NONE +endfunction + +" Prepend all subdirectories of path to the rtp, and append all 'after' +" directories in those subdirectories. Deprecated. +function! pathogen#runtime_prepend_subdirectories(path) abort + call s:warn('Change pathogen#runtime_prepend_subdirectories('.string(a:path).') to pathogen#infect('.string(a:path.'/{}').')') + return pathogen#surround(a:path . pathogen#slash() . '{}') +endfunction + +function! pathogen#incubate(...) abort + let name = a:0 ? a:1 : 'bundle/{}' + call s:warn('Change pathogen#incubate('.(a:0 ? string(a:1) : '').') to pathogen#infect('.string(name).')') + return pathogen#interpose(name) +endfunction + +" Deprecated alias for pathogen#interpose(). +function! pathogen#runtime_append_all_bundles(...) abort + if a:0 + call s:warn('Change pathogen#runtime_append_all_bundles('.string(a:1).') to pathogen#infect('.string(a:1.'/{}').')') + else + call s:warn('Change pathogen#runtime_append_all_bundles() to pathogen#infect()') + endif + return pathogen#interpose(a:0 ? a:1 . '/{}' : 'bundle/{}') +endfunction + +if exists(':Vedit') + finish +endif + +let s:vopen_warning = 0 + +function! s:find(count,cmd,file,lcd) + let rtp = pathogen#join(1,pathogen#split(&runtimepath)) + let file = pathogen#runtime_findfile(a:file,a:count) + if file ==# '' + return "echoerr 'E345: Can''t find file \"".a:file."\" in runtimepath'" + endif + if !s:vopen_warning + let s:vopen_warning = 1 + let warning = '|echohl WarningMsg|echo "Install scriptease.vim to continue using :V'.a:cmd.'"|echohl NONE' + else + let warning = '' + endif + if a:lcd + let path = file[0:-strlen(a:file)-2] + execute 'lcd `=path`' + return a:cmd.' '.pathogen#fnameescape(a:file) . warning + else + return a:cmd.' '.pathogen#fnameescape(file) . warning + endif +endfunction + +function! s:Findcomplete(A,L,P) + let sep = pathogen#slash() + let cheats = { + \'a': 'autoload', + \'d': 'doc', + \'f': 'ftplugin', + \'i': 'indent', + \'p': 'plugin', + \'s': 'syntax'} + if a:A =~# '^\w[\\/]' && has_key(cheats,a:A[0]) + let request = cheats[a:A[0]].a:A[1:-1] + else + let request = a:A + endif + let pattern = substitute(request,'/\|\'.sep,'*'.sep,'g').'*' + let found = {} + for path in pathogen#split(&runtimepath) + let path = expand(path, ':p') + let matches = split(glob(path.sep.pattern),"\n") + call map(matches,'isdirectory(v:val) ? v:val.sep : v:val') + call map(matches,'expand(v:val, ":p")[strlen(path)+1:-1]') + for match in matches + let found[match] = 1 + endfor + endfor + return sort(keys(found)) +endfunction + +command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Ve :execute s:find(,'edit',,0) +command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vedit :execute s:find(,'edit',,0) +command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vopen :execute s:find(,'edit',,1) +command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vsplit :execute s:find(,'split',,1) +command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vvsplit :execute s:find(,'vsplit',,1) +command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vtabedit :execute s:find(,'tabedit',,1) +command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vpedit :execute s:find(,'pedit',,1) +command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vread :execute s:find(,'read',,1) + +" vim:set et sw=2 foldmethod=expr foldexpr=getline(v\:lnum)=~'^\"\ Section\:'?'>1'\:getline(v\:lnum)=~#'^fu'?'a1'\:getline(v\:lnum)=~#'^endf'?'s1'\:'=': diff --git a/vim/bundle/YouCompleteMe b/vim/bundle/YouCompleteMe new file mode 160000 index 0000000..f20c693 --- /dev/null +++ b/vim/bundle/YouCompleteMe @@ -0,0 +1 @@ +Subproject commit f20c69321d5152662f86f8903af258e22a64823d diff --git a/vim/bundle/gitignore b/vim/bundle/gitignore new file mode 160000 index 0000000..061c5c7 --- /dev/null +++ b/vim/bundle/gitignore @@ -0,0 +1 @@ +Subproject commit 061c5c756713f42b92b6b69b0a081075319a60d0 diff --git a/vim/bundle/nerdtree b/vim/bundle/nerdtree new file mode 160000 index 0000000..0b44415 --- /dev/null +++ b/vim/bundle/nerdtree @@ -0,0 +1 @@ +Subproject commit 0b44415a3302030b56755cc1135ca9ca57dc1ada diff --git a/vim/bundle/nerdtree-git-plugin b/vim/bundle/nerdtree-git-plugin new file mode 160000 index 0000000..23d5199 --- /dev/null +++ b/vim/bundle/nerdtree-git-plugin @@ -0,0 +1 @@ +Subproject commit 23d5199f0eaee036186f3df8a87ec356905c6a32 diff --git a/vim/bundle/php.vim b/vim/bundle/php.vim new file mode 160000 index 0000000..502c96d --- /dev/null +++ b/vim/bundle/php.vim @@ -0,0 +1 @@ +Subproject commit 502c96d61919dd784f0f7214ca69c31286fa11eb diff --git a/vim/bundle/rust.vim b/vim/bundle/rust.vim new file mode 160000 index 0000000..566fa06 --- /dev/null +++ b/vim/bundle/rust.vim @@ -0,0 +1 @@ +Subproject commit 566fa060a852a92758bdf1a0a1752ed74e16cbd1 diff --git a/vim/bundle/snipmate.vim b/vim/bundle/snipmate.vim new file mode 160000 index 0000000..f5a75d0 --- /dev/null +++ b/vim/bundle/snipmate.vim @@ -0,0 +1 @@ +Subproject commit f5a75d075d3c005ebe69e3f5e56cf99516e8aa3b diff --git a/vim/bundle/syntastic b/vim/bundle/syntastic new file mode 160000 index 0000000..630169b --- /dev/null +++ b/vim/bundle/syntastic @@ -0,0 +1 @@ +Subproject commit 630169bfc21bf5a114616238810e4b31b19eb983 diff --git a/vim/bundle/tagbar b/vim/bundle/tagbar new file mode 160000 index 0000000..7b36c46 --- /dev/null +++ b/vim/bundle/tagbar @@ -0,0 +1 @@ +Subproject commit 7b36c46d17d57db34fdb0adac9ba6382d0bb5e66 diff --git a/vim/bundle/taglist.vim b/vim/bundle/taglist.vim new file mode 160000 index 0000000..53041fb --- /dev/null +++ b/vim/bundle/taglist.vim @@ -0,0 +1 @@ +Subproject commit 53041fbc45398a9af631a20657e109707a455339 diff --git a/vim/bundle/vim-airline b/vim/bundle/vim-airline new file mode 160000 index 0000000..14d14cf --- /dev/null +++ b/vim/bundle/vim-airline @@ -0,0 +1 @@ +Subproject commit 14d14cf951c08fc88ca6c3e6f28fe47b99421e23 diff --git a/vim/bundle/vim-autoclose b/vim/bundle/vim-autoclose new file mode 160000 index 0000000..a9a3b73 --- /dev/null +++ b/vim/bundle/vim-autoclose @@ -0,0 +1 @@ +Subproject commit a9a3b7384657bc1f60a963fd6c08c63fc48d61c3 diff --git a/vim/bundle/vim-coffee-script b/vim/bundle/vim-coffee-script new file mode 160000 index 0000000..32fe889 --- /dev/null +++ b/vim/bundle/vim-coffee-script @@ -0,0 +1 @@ +Subproject commit 32fe889b8cafd3a4921ef8e6485156453ff58c42 diff --git a/vim/bundle/vim-colors-solarized b/vim/bundle/vim-colors-solarized new file mode 160000 index 0000000..528a59f --- /dev/null +++ b/vim/bundle/vim-colors-solarized @@ -0,0 +1 @@ +Subproject commit 528a59f26d12278698bb946f8fb82a63711eec21 diff --git a/vim/bundle/vim-fugitive b/vim/bundle/vim-fugitive new file mode 160000 index 0000000..dba8a07 --- /dev/null +++ b/vim/bundle/vim-fugitive @@ -0,0 +1 @@ +Subproject commit dba8a0705d95cda76d599bb7d09964d67741a5c5 diff --git a/vim/bundle/vim-gitgutter b/vim/bundle/vim-gitgutter new file mode 160000 index 0000000..b18e23c --- /dev/null +++ b/vim/bundle/vim-gitgutter @@ -0,0 +1 @@ +Subproject commit b18e23cdfa082dee7da8a2466db5a66907491e5b diff --git a/vim/bundle/vim-hack b/vim/bundle/vim-hack new file mode 160000 index 0000000..580441e --- /dev/null +++ b/vim/bundle/vim-hack @@ -0,0 +1 @@ +Subproject commit 580441e583502c42d28a2001aa3206250913879e diff --git a/vim/colors/mmk2410.vim b/vim/colors/mmk2410.vim new file mode 100644 index 0000000..e76c23d --- /dev/null +++ b/vim/colors/mmk2410.vim @@ -0,0 +1,101 @@ +" Vim color file - mmk2410 +" Generated by http://bytefluent.com/vivify 2015-09-18 +set background=dark +if version > 580 + hi clear + if exists("syntax_on") + syntax reset + endif +endif + +set t_Co=256 +let g:colors_name = "mmk2410" + +"hi CTagsMember -- no settings -- +"hi CTagsGlobalConstant -- no settings -- +"hi Ignore -- no settings -- +hi Normal guifg=#f2f2f2 guibg=#0a0f0f guisp=#0a0f0f gui=NONE ctermfg=255 ctermbg=233 cterm=NONE +"hi CTagsImport -- no settings -- +"hi CTagsGlobalVariable -- no settings -- +"hi EnumerationValue -- no settings -- +"hi Union -- no settings -- +"hi Question -- no settings -- +"hi EnumerationName -- no settings -- +"hi DefinedName -- no settings -- +"hi LocalVariable -- no settings -- +"hi CTagsClass -- no settings -- +"hi clear -- no settings -- +hi IncSearch guifg=#192224 guibg=#00c700 guisp=#00c700 gui=NONE ctermfg=235 ctermbg=40 cterm=NONE +hi WildMenu guifg=NONE guibg=#A1A6A8 guisp=#A1A6A8 gui=NONE ctermfg=NONE ctermbg=248 cterm=NONE +hi SignColumn guifg=#192224 guibg=#536991 guisp=#536991 gui=NONE ctermfg=235 ctermbg=60 cterm=NONE +hi SpecialComment guifg=#BD9800 guibg=NONE guisp=NONE gui=NONE ctermfg=1 ctermbg=NONE cterm=NONE +hi Typedef guifg=#536991 guibg=NONE guisp=NONE gui=bold ctermfg=60 ctermbg=NONE cterm=bold +hi Title guifg=#f5f5ff guibg=#292929 guisp=#292929 gui=bold,italic ctermfg=189 ctermbg=235 cterm=bold +hi Folded guifg=#192224 guibg=#A1A6A8 guisp=#A1A6A8 gui=italic ctermfg=235 ctermbg=248 cterm=NONE +hi PreCondit guifg=#f20372 guibg=NONE guisp=NONE gui=NONE ctermfg=198 ctermbg=NONE cterm=NONE +hi Include guifg=#BD9800 guibg=NONE guisp=NONE gui=NONE ctermfg=1 ctermbg=NONE cterm=NONE +hi Float guifg=#A1A6A8 guibg=NONE guisp=NONE gui=NONE ctermfg=248 ctermbg=NONE cterm=NONE +hi StatusLineNC guifg=#cccccc guibg=#127894 guisp=#127894 gui=bold ctermfg=252 ctermbg=24 cterm=bold +hi NonText guifg=#5E6C70 guibg=NONE guisp=NONE gui=italic ctermfg=66 ctermbg=NONE cterm=NONE +hi DiffText guifg=NONE guibg=#a33b42 guisp=#a33b42 gui=NONE ctermfg=NONE ctermbg=131 cterm=NONE +hi ErrorMsg guifg=#ffffff guibg=#e81919 guisp=#e81919 gui=NONE ctermfg=15 ctermbg=160 cterm=NONE +hi Debug guifg=#BD9800 guibg=NONE guisp=NONE gui=NONE ctermfg=1 ctermbg=NONE cterm=NONE +hi PMenuSbar guifg=NONE guibg=#193138 guisp=#193138 gui=NONE ctermfg=NONE ctermbg=237 cterm=NONE +hi Identifier guifg=#47afff guibg=NONE guisp=NONE gui=NONE ctermfg=75 ctermbg=NONE cterm=NONE +hi SpecialChar guifg=#BD9800 guibg=NONE guisp=NONE gui=NONE ctermfg=1 ctermbg=NONE cterm=NONE +hi Conditional guifg=#f20372 guibg=NONE guisp=NONE gui=bold ctermfg=198 ctermbg=NONE cterm=bold +hi StorageClass guifg=#536991 guibg=NONE guisp=NONE gui=bold ctermfg=60 ctermbg=NONE cterm=bold +hi Todo guifg=#ffffff guibg=#bd0000 guisp=#bd0000 gui=NONE ctermfg=15 ctermbg=1 cterm=NONE +hi Special guifg=#cc00ff guibg=NONE guisp=NONE gui=NONE ctermfg=165 ctermbg=NONE cterm=NONE +hi LineNr guifg=#666666 guibg=NONE guisp=NONE gui=NONE ctermfg=241 ctermbg=NONE cterm=NONE +hi StatusLine guifg=#d4d4d4 guibg=#ad3434 guisp=#ad3434 gui=bold ctermfg=188 ctermbg=131 cterm=bold +hi Label guifg=#BD9800 guibg=NONE guisp=NONE gui=bold ctermfg=1 ctermbg=NONE cterm=bold +hi PMenuSel guifg=#1c1c1c guibg=#c700b0 guisp=#c700b0 gui=NONE ctermfg=234 ctermbg=5 cterm=NONE +hi Search guifg=#192224 guibg=#55bd00 guisp=#55bd00 gui=NONE ctermfg=235 ctermbg=70 cterm=NONE +hi Delimiter guifg=#BD9800 guibg=NONE guisp=NONE gui=NONE ctermfg=1 ctermbg=NONE cterm=NONE +hi Statement guifg=#f20372 guibg=NONE guisp=NONE gui=bold ctermfg=198 ctermbg=NONE cterm=bold +hi SpellRare guifg=#F9F9FF guibg=#192224 guisp=#192224 gui=underline ctermfg=189 ctermbg=235 cterm=underline +hi Comment guifg=#5c5c5c guibg=NONE guisp=NONE gui=italic ctermfg=59 ctermbg=NONE cterm=NONE +hi Character guifg=#A1A6A8 guibg=NONE guisp=NONE gui=NONE ctermfg=248 ctermbg=NONE cterm=NONE +hi TabLineSel guifg=#d6d6d6 guibg=#1e73bd guisp=#1e73bd gui=bold ctermfg=188 ctermbg=4 cterm=bold +hi Number guifg=#A1A6A8 guibg=NONE guisp=NONE gui=NONE ctermfg=248 ctermbg=NONE cterm=NONE +hi Boolean guifg=#A1A6A8 guibg=NONE guisp=NONE gui=NONE ctermfg=248 ctermbg=NONE cterm=NONE +hi Operator guifg=#d91a1a guibg=NONE guisp=NONE gui=bold ctermfg=160 ctermbg=NONE cterm=bold +hi CursorLine guifg=NONE guibg=#222E30 guisp=#222E30 gui=NONE ctermfg=NONE ctermbg=236 cterm=NONE +hi TabLineFill guifg=#192224 guibg=#127894 guisp=#127894 gui=bold ctermfg=235 ctermbg=24 cterm=bold +hi WarningMsg guifg=#A1A6A8 guibg=#912C00 guisp=#912C00 gui=NONE ctermfg=248 ctermbg=88 cterm=NONE +hi VisualNOS guifg=#192224 guibg=#F9F9FF guisp=#F9F9FF gui=underline ctermfg=235 ctermbg=189 cterm=underline +hi DiffDelete guifg=NONE guibg=#192224 guisp=#192224 gui=NONE ctermfg=NONE ctermbg=235 cterm=NONE +hi ModeMsg guifg=#F9F9F9 guibg=#192224 guisp=#192224 gui=bold ctermfg=15 ctermbg=235 cterm=bold +hi CursorColumn guifg=NONE guibg=#222E30 guisp=#222E30 gui=NONE ctermfg=NONE ctermbg=236 cterm=NONE +hi Define guifg=#BD9800 guibg=NONE guisp=NONE gui=NONE ctermfg=1 ctermbg=NONE cterm=NONE +hi Function guifg=#48c750 guibg=NONE guisp=NONE gui=bold ctermfg=77 ctermbg=NONE cterm=bold +hi FoldColumn guifg=#192224 guibg=#A1A6A8 guisp=#A1A6A8 gui=italic ctermfg=235 ctermbg=248 cterm=NONE +hi PreProc guifg=#47afff guibg=NONE guisp=NONE gui=NONE ctermfg=75 ctermbg=NONE cterm=NONE +hi Visual guifg=#192224 guibg=#F9F9FF guisp=#F9F9FF gui=NONE ctermfg=235 ctermbg=189 cterm=NONE +hi MoreMsg guifg=#BD9800 guibg=NONE guisp=NONE gui=bold ctermfg=1 ctermbg=NONE cterm=bold +hi SpellCap guifg=#F9F9FF guibg=#192224 guisp=#192224 gui=underline ctermfg=189 ctermbg=235 cterm=underline +hi VertSplit guifg=#192224 guibg=#5E6C70 guisp=#5E6C70 gui=bold ctermfg=235 ctermbg=66 cterm=bold +hi Exception guifg=#BD9800 guibg=NONE guisp=NONE gui=bold ctermfg=1 ctermbg=NONE cterm=bold +hi Keyword guifg=#ff6600 guibg=NONE guisp=NONE gui=bold ctermfg=202 ctermbg=NONE cterm=bold +hi Type guifg=#47e6c6 guibg=NONE guisp=NONE gui=bold ctermfg=79 ctermbg=NONE cterm=bold +hi DiffChange guifg=NONE guibg=#a33b42 guisp=#a33b42 gui=NONE ctermfg=NONE ctermbg=131 cterm=NONE +hi Cursor guifg=#192224 guibg=#F9F9F9 guisp=#F9F9F9 gui=NONE ctermfg=235 ctermbg=15 cterm=NONE +hi SpellLocal guifg=#F9F9FF guibg=#192224 guisp=#192224 gui=underline ctermfg=189 ctermbg=235 cterm=underline +hi Error guifg=#A1A6A8 guibg=#912C00 guisp=#912C00 gui=NONE ctermfg=248 ctermbg=88 cterm=NONE +hi PMenu guifg=#969696 guibg=#193138 guisp=#193138 gui=NONE ctermfg=246 ctermbg=237 cterm=NONE +hi SpecialKey guifg=#5E6C70 guibg=NONE guisp=NONE gui=italic ctermfg=66 ctermbg=NONE cterm=NONE +hi Constant guifg=#ff0073 guibg=NONE guisp=NONE gui=NONE ctermfg=197 ctermbg=NONE cterm=NONE +hi Tag guifg=#BD9800 guibg=NONE guisp=NONE gui=NONE ctermfg=1 ctermbg=NONE cterm=NONE +hi String guifg=#bdc6c9 guibg=NONE guisp=NONE gui=NONE ctermfg=251 ctermbg=NONE cterm=NONE +hi PMenuThumb guifg=NONE guibg=#a4a6a8 guisp=#a4a6a8 gui=NONE ctermfg=NONE ctermbg=248 cterm=NONE +hi MatchParen guifg=#BD9800 guibg=NONE guisp=NONE gui=bold ctermfg=1 ctermbg=NONE cterm=bold +hi Repeat guifg=#BD9800 guibg=NONE guisp=NONE gui=bold ctermfg=1 ctermbg=NONE cterm=bold +hi SpellBad guifg=#F9F9FF guibg=#192224 guisp=#192224 gui=underline ctermfg=189 ctermbg=235 cterm=underline +hi Directory guifg=#536991 guibg=NONE guisp=NONE gui=bold ctermfg=60 ctermbg=NONE cterm=bold +hi Structure guifg=#536991 guibg=NONE guisp=NONE gui=bold ctermfg=60 ctermbg=NONE cterm=bold +hi Macro guifg=#BD9800 guibg=NONE guisp=NONE gui=NONE ctermfg=1 ctermbg=NONE cterm=NONE +hi Underlined guifg=#F9F9FF guibg=#192224 guisp=#192224 gui=underline ctermfg=189 ctermbg=235 cterm=underline +hi DiffAdd guifg=NONE guibg=#193224 guisp=#193224 gui=NONE ctermfg=NONE ctermbg=236 cterm=NONE +hi TabLine guifg=#d6d6d6 guibg=#2b6599 guisp=#2b6599 gui=bold ctermfg=188 ctermbg=24 cterm=bold +hi cursorim guifg=#192224 guibg=#536991 guisp=#536991 gui=NONE ctermfg=235 ctermbg=60 cterm=NONE diff --git a/vim/colors/monokai.vim b/vim/colors/monokai.vim new file mode 100644 index 0000000..f65135a --- /dev/null +++ b/vim/colors/monokai.vim @@ -0,0 +1,108 @@ +" Vim color file +" Converted from Textmate theme Monokai using Coloration v0.3.2 (http://github.com/sickill/coloration) + +set background=dark +highlight clear + +if exists("syntax_on") + syntax reset +endif + +set t_Co=256 +let g:colors_name = "monokai" + +hi Cursor ctermfg=235 ctermbg=231 cterm=NONE guifg=#272822 guibg=#f8f8f0 gui=NONE +hi Visual ctermfg=NONE ctermbg=59 cterm=NONE guifg=NONE guibg=#49483e gui=NONE +hi CursorLine ctermfg=NONE ctermbg=237 cterm=NONE guifg=NONE guibg=#3c3d37 gui=NONE +hi CursorColumn ctermfg=NONE ctermbg=237 cterm=NONE guifg=NONE guibg=#3c3d37 gui=NONE +hi ColorColumn ctermfg=NONE ctermbg=237 cterm=NONE guifg=NONE guibg=#3c3d37 gui=NONE +hi LineNr ctermfg=102 ctermbg=237 cterm=NONE guifg=#90908a guibg=#3c3d37 gui=NONE +hi VertSplit ctermfg=241 ctermbg=241 cterm=NONE guifg=#64645e guibg=#64645e gui=NONE +hi MatchParen ctermfg=197 ctermbg=NONE cterm=underline guifg=#f92672 guibg=NONE gui=underline +hi StatusLine ctermfg=231 ctermbg=241 cterm=bold guifg=#f8f8f2 guibg=#64645e gui=bold +hi StatusLineNC ctermfg=231 ctermbg=241 cterm=NONE guifg=#f8f8f2 guibg=#64645e gui=NONE +hi Pmenu ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE +hi PmenuSel ctermfg=NONE ctermbg=59 cterm=NONE guifg=NONE guibg=#49483e gui=NONE +hi IncSearch ctermfg=235 ctermbg=186 cterm=NONE guifg=#272822 guibg=#e6db74 gui=NONE +hi Search ctermfg=NONE ctermbg=NONE cterm=underline guifg=NONE guibg=NONE gui=underline +hi Directory ctermfg=141 ctermbg=NONE cterm=NONE guifg=#ae81ff guibg=NONE gui=NONE +hi Folded ctermfg=242 ctermbg=235 cterm=NONE guifg=#75715e guibg=#272822 gui=NONE +hi SignColumn ctermfg=NONE ctermbg=237 cterm=NONE guifg=NONE guibg=#3c3d37 gui=NONE +hi Normal ctermfg=231 ctermbg=235 cterm=NONE guifg=#f8f8f2 guibg=#272822 gui=NONE +hi Boolean ctermfg=141 ctermbg=NONE cterm=NONE guifg=#ae81ff guibg=NONE gui=NONE +hi Character ctermfg=141 ctermbg=NONE cterm=NONE guifg=#ae81ff guibg=NONE gui=NONE +hi Comment ctermfg=242 ctermbg=NONE cterm=NONE guifg=#75715e guibg=NONE gui=NONE +hi Conditional ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE +hi Constant ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE +hi Define ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE +hi DiffAdd ctermfg=231 ctermbg=64 cterm=bold guifg=#f8f8f2 guibg=#46830c gui=bold +hi DiffDelete ctermfg=88 ctermbg=NONE cterm=NONE guifg=#8b0807 guibg=NONE gui=NONE +hi DiffChange ctermfg=NONE ctermbg=NONE cterm=NONE guifg=#f8f8f2 guibg=#243955 gui=NONE +hi DiffText ctermfg=231 ctermbg=24 cterm=bold guifg=#f8f8f2 guibg=#204a87 gui=bold +hi ErrorMsg ctermfg=231 ctermbg=197 cterm=NONE guifg=#f8f8f0 guibg=#f92672 gui=NONE +hi WarningMsg ctermfg=231 ctermbg=197 cterm=NONE guifg=#f8f8f0 guibg=#f92672 gui=NONE +hi Float ctermfg=141 ctermbg=NONE cterm=NONE guifg=#ae81ff guibg=NONE gui=NONE +hi Function ctermfg=148 ctermbg=NONE cterm=NONE guifg=#a6e22e guibg=NONE gui=NONE +hi Identifier ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=italic +hi Keyword ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE +hi Label ctermfg=186 ctermbg=NONE cterm=NONE guifg=#e6db74 guibg=NONE gui=NONE +hi NonText ctermfg=59 ctermbg=236 cterm=NONE guifg=#49483e guibg=#31322c gui=NONE +hi Number ctermfg=141 ctermbg=NONE cterm=NONE guifg=#ae81ff guibg=NONE gui=NONE +hi Operator ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE +hi PreProc ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE +hi Special ctermfg=231 ctermbg=NONE cterm=NONE guifg=#f8f8f2 guibg=NONE gui=NONE +hi SpecialKey ctermfg=59 ctermbg=237 cterm=NONE guifg=#49483e guibg=#3c3d37 gui=NONE +hi Statement ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE +hi StorageClass ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=italic +hi String ctermfg=186 ctermbg=NONE cterm=NONE guifg=#e6db74 guibg=NONE gui=NONE +hi Tag ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE +hi Title ctermfg=231 ctermbg=NONE cterm=bold guifg=#f8f8f2 guibg=NONE gui=bold +hi Todo ctermfg=95 ctermbg=NONE cterm=inverse,bold guifg=#75715e guibg=NONE gui=inverse,bold +hi Type ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE +hi Underlined ctermfg=NONE ctermbg=NONE cterm=underline guifg=NONE guibg=NONE gui=underline +hi rubyClass ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE +hi rubyFunction ctermfg=148 ctermbg=NONE cterm=NONE guifg=#a6e22e guibg=NONE gui=NONE +hi rubyInterpolationDelimiter ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE +hi rubySymbol ctermfg=141 ctermbg=NONE cterm=NONE guifg=#ae81ff guibg=NONE gui=NONE +hi rubyConstant ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=italic +hi rubyStringDelimiter ctermfg=186 ctermbg=NONE cterm=NONE guifg=#e6db74 guibg=NONE gui=NONE +hi rubyBlockParameter ctermfg=208 ctermbg=NONE cterm=NONE guifg=#fd971f guibg=NONE gui=italic +hi rubyInstanceVariable ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE +hi rubyInclude ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE +hi rubyGlobalVariable ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE +hi rubyRegexp ctermfg=186 ctermbg=NONE cterm=NONE guifg=#e6db74 guibg=NONE gui=NONE +hi rubyRegexpDelimiter ctermfg=186 ctermbg=NONE cterm=NONE guifg=#e6db74 guibg=NONE gui=NONE +hi rubyEscape ctermfg=141 ctermbg=NONE cterm=NONE guifg=#ae81ff guibg=NONE gui=NONE +hi rubyControl ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE +hi rubyClassVariable ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE +hi rubyOperator ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE +hi rubyException ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE +hi rubyPseudoVariable ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE +hi rubyRailsUserClass ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=italic +hi rubyRailsARAssociationMethod ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=NONE +hi rubyRailsARMethod ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=NONE +hi rubyRailsRenderMethod ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=NONE +hi rubyRailsMethod ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=NONE +hi erubyDelimiter ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE +hi erubyComment ctermfg=95 ctermbg=NONE cterm=NONE guifg=#75715e guibg=NONE gui=NONE +hi erubyRailsMethod ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=NONE +hi htmlTag ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE +hi htmlEndTag ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE +hi htmlTagName ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE +hi htmlArg ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE +hi htmlSpecialChar ctermfg=141 ctermbg=NONE cterm=NONE guifg=#ae81ff guibg=NONE gui=NONE +hi javaScriptFunction ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=italic +hi javaScriptRailsFunction ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=NONE +hi javaScriptBraces ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE +hi yamlKey ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE +hi yamlAnchor ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE +hi yamlAlias ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE +hi yamlDocumentHeader ctermfg=186 ctermbg=NONE cterm=NONE guifg=#e6db74 guibg=NONE gui=NONE +hi cssURL ctermfg=208 ctermbg=NONE cterm=NONE guifg=#fd971f guibg=NONE gui=italic +hi cssFunctionName ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=NONE +hi cssColor ctermfg=141 ctermbg=NONE cterm=NONE guifg=#ae81ff guibg=NONE gui=NONE +hi cssPseudoClassId ctermfg=148 ctermbg=NONE cterm=NONE guifg=#a6e22e guibg=NONE gui=NONE +hi cssClassName ctermfg=148 ctermbg=NONE cterm=NONE guifg=#a6e22e guibg=NONE gui=NONE +hi cssValueLength ctermfg=141 ctermbg=NONE cterm=NONE guifg=#ae81ff guibg=NONE gui=NONE +hi cssCommonAttr ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=NONE +hi cssBraces ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE diff --git a/vim/compiler/tex.vim b/vim/compiler/tex.vim new file mode 120000 index 0000000..96de836 --- /dev/null +++ b/vim/compiler/tex.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/compiler/tex.vim \ No newline at end of file diff --git a/vim/doc/imaps.txt.gz b/vim/doc/imaps.txt.gz new file mode 120000 index 0000000..cf5808b --- /dev/null +++ b/vim/doc/imaps.txt.gz @@ -0,0 +1 @@ +/usr/share/vim/addons/doc/imaps.txt.gz \ No newline at end of file diff --git a/vim/doc/latex-suite-quickstart.txt.gz b/vim/doc/latex-suite-quickstart.txt.gz new file mode 120000 index 0000000..5ef4db2 --- /dev/null +++ b/vim/doc/latex-suite-quickstart.txt.gz @@ -0,0 +1 @@ +/usr/share/vim/addons/doc/latex-suite-quickstart.txt.gz \ No newline at end of file diff --git a/vim/doc/latex-suite.txt.gz b/vim/doc/latex-suite.txt.gz new file mode 120000 index 0000000..35c3d5a --- /dev/null +++ b/vim/doc/latex-suite.txt.gz @@ -0,0 +1 @@ +/usr/share/vim/addons/doc/latex-suite.txt.gz \ No newline at end of file diff --git a/vim/doc/latexhelp.txt.gz b/vim/doc/latexhelp.txt.gz new file mode 120000 index 0000000..f8197a0 --- /dev/null +++ b/vim/doc/latexhelp.txt.gz @@ -0,0 +1 @@ +/usr/share/vim/addons/doc/latexhelp.txt.gz \ No newline at end of file diff --git a/vim/doc/tags b/vim/doc/tags new file mode 100644 index 0000000..b87d30e --- /dev/null +++ b/vim/doc/tags @@ -0,0 +1,914 @@ +Alph latexhelp.txt.gz /*Alph* +Alt-B latex-suite.txt.gz /*Alt-B* +Alt-C latex-suite.txt.gz /*Alt-C* +Alt-I latex-suite.txt.gz /*Alt-I* +Alt-L latex-suite.txt.gz /*Alt-L* +BibTeX latexhelp.txt.gz /*BibTeX* +IMAP_PutTextWithMovement latex-suite.txt.gz /*IMAP_PutTextWithMovement* +Imap_DeleteEmptyPlaceHolders latex-suite.txt.gz /*Imap_DeleteEmptyPlaceHolders* +Imap_FreezeImap latex-suite.txt.gz /*Imap_FreezeImap* +Imap_PlaceHolderEnd latex-suite.txt.gz /*Imap_PlaceHolderEnd* +Imap_PlaceHolderStart latex-suite.txt.gz /*Imap_PlaceHolderStart* +Imap_StickyPlaceHolders latex-suite.txt.gz /*Imap_StickyPlaceHolders* +Imap_UsePlaceHolders latex-suite.txt.gz /*Imap_UsePlaceHolders* +LaTeX latexhelp.txt.gz /*LaTeX* +Plug_IMAP_DeleteAndJumBack latex-suite.txt.gz /*Plug_IMAP_DeleteAndJumBack* +Plug_IMAP_DeleteAndJumpForward latex-suite.txt.gz /*Plug_IMAP_DeleteAndJumpForward* +Plug_IMAP_JumpBack latex-suite.txt.gz /*Plug_IMAP_JumpBack* +Plug_IMAP_JumpForward latex-suite.txt.gz /*Plug_IMAP_JumpForward* +Plug_Tex_InsertItemOnThisLine latex-suite.txt.gz /*Plug_Tex_InsertItemOnThisLine* +Plug_Tex_LeftRight latex-suite.txt.gz /*Plug_Tex_LeftRight* +Plug_Tex_MathBF latex-suite.txt.gz /*Plug_Tex_MathBF* +Plug_Tex_MathCal latex-suite.txt.gz /*Plug_Tex_MathCal* +Roman latexhelp.txt.gz /*Roman* +TClearCiteHist latex-suite.txt.gz /*TClearCiteHist* +TLook latex-suite.txt.gz /*TLook* +TLookAll latex-suite.txt.gz /*TLookAll* +TLookBib latex-suite.txt.gz /*TLookBib* +TMacro latex-suite.txt.gz /*TMacro* +TMacroDelete latex-suite.txt.gz /*TMacroDelete* +TMacroEdit latex-suite.txt.gz /*TMacroEdit* +TMacroNew latex-suite.txt.gz /*TMacroNew* +TPackage latex-suite.txt.gz /*TPackage* +TPackageUpdate latex-suite.txt.gz /*TPackageUpdate* +TPackageUpdateAll latex-suite.txt.gz /*TPackageUpdateAll* +TPartComp latex-suite.txt.gz /*TPartComp* +TPartView latex-suite.txt.gz /*TPartView* +TSection latex-suite.txt.gz /*TSection* +TSectionAdvanced latex-suite.txt.gz /*TSectionAdvanced* +TTemplate latex-suite.txt.gz /*TTemplate* +Tex_AutoFolding latex-suite.txt.gz /*Tex_AutoFolding* +Tex_BIBINPUTS latex-suite.txt.gz /*Tex_BIBINPUTS* +Tex_CatchVisMapErrors latex-suite.txt.gz /*Tex_CatchVisMapErrors* +Tex_Com_name latex-suite.txt.gz /*Tex_Com_name* +Tex_CompileRule_format latex-suite.txt.gz /*Tex_CompileRule_format* +Tex_Debug latex-suite.txt.gz /*Tex_Debug* +Tex_DefaultTargetFormat latex-suite.txt.gz /*Tex_DefaultTargetFormat* +Tex_Diacritics latex-suite.txt.gz /*Tex_Diacritics* +Tex_Env_name latex-suite.txt.gz /*Tex_Env_name* +Tex_EnvironmentMaps latex-suite.txt.gz /*Tex_EnvironmentMaps* +Tex_EnvironmentMenus latex-suite.txt.gz /*Tex_EnvironmentMenus* +Tex_ExplorerHeight latex-suite.txt.gz /*Tex_ExplorerHeight* +Tex_FoldedCommands latex-suite.txt.gz /*Tex_FoldedCommands* +Tex_FoldedEnvironments latex-suite.txt.gz /*Tex_FoldedEnvironments* +Tex_FoldedMisc latex-suite.txt.gz /*Tex_FoldedMisc* +Tex_FoldedSections latex-suite.txt.gz /*Tex_FoldedSections* +Tex_Folding latex-suite.txt.gz /*Tex_Folding* +Tex_FontMaps latex-suite.txt.gz /*Tex_FontMaps* +Tex_FontMenus latex-suite.txt.gz /*Tex_FontMenus* +Tex_GotoError latex-suite.txt.gz /*Tex_GotoError* +Tex_HotKeyMappings latex-suite.txt.gz /*Tex_HotKeyMappings* +Tex_IgnoreLevel latex-suite.txt.gz /*Tex_IgnoreLevel* +Tex_IgnoredWarnings latex-suite.txt.gz /*Tex_IgnoredWarnings* +Tex_ImageDir latex-suite.txt.gz /*Tex_ImageDir* +Tex_ItemStyle_environment latex-suite.txt.gz /*Tex_ItemStyle_environment* +Tex_Leader latex-suite.txt.gz /*Tex_Leader* +Tex_Leader2 latex-suite.txt.gz /*Tex_Leader2* +Tex_MainFileExpression latex-suite.txt.gz /*Tex_MainFileExpression* +Tex_MainMenuLocation latex-suite.txt.gz /*Tex_MainMenuLocation* +Tex_MathMenus latex-suite.txt.gz /*Tex_MathMenus* +Tex_Menus latex-suite.txt.gz /*Tex_Menus* +Tex_MultipleCompileFormats latex-suite.txt.gz /*Tex_MultipleCompileFormats* +Tex_NestElementMenus latex-suite.txt.gz /*Tex_NestElementMenus* +Tex_NestPackagesMenu latex-suite.txt.gz /*Tex_NestPackagesMenu* +Tex_PackagesMenu latex-suite.txt.gz /*Tex_PackagesMenu* +Tex_ProjectSourceFiles latex-suite.txt.gz /*Tex_ProjectSourceFiles* +Tex_PromptedCommands latex-suite.txt.gz /*Tex_PromptedCommands* +Tex_PromptedEnvironments latex-suite.txt.gz /*Tex_PromptedEnvironments* +Tex_RememberCiteSearch latex-suite.txt.gz /*Tex_RememberCiteSearch* +Tex_SectionMaps latex-suite.txt.gz /*Tex_SectionMaps* +Tex_SectionMenus latex-suite.txt.gz /*Tex_SectionMenus* +Tex_SmartKeyBS latex-suite.txt.gz /*Tex_SmartKeyBS* +Tex_SmartKeyQuote latex-suite.txt.gz /*Tex_SmartKeyQuote* +Tex_TEXINPUTS latex-suite.txt.gz /*Tex_TEXINPUTS* +Tex_UseMakefile latex-suite.txt.gz /*Tex_UseMakefile* +Tex_UseMenuWizard latex-suite.txt.gz /*Tex_UseMenuWizard* +Tex_UsePython latex-suite.txt.gz /*Tex_UsePython* +Tex_UseSimpleLabelSearch latex-suite.txt.gz /*Tex_UseSimpleLabelSearch* +Tex_UseUtfMenus latex-suite.txt.gz /*Tex_UseUtfMenus* +Tex_ViewRuleComplete_format latex-suite.txt.gz /*Tex_ViewRuleComplete_format* +Tex_ViewRule_format latex-suite.txt.gz /*Tex_ViewRule_format* +Tex_ViewerCwindowHeight latex-suite.txt.gz /*Tex_ViewerCwindowHeight* +Tex_ViewerPreviewHeight latex-suite.txt.gz /*Tex_ViewerPreviewHeight* +Tshortcuts latex-suite.txt.gz /*Tshortcuts* +\Alph latexhelp.txt.gz /*\\Alph* +\Huge latexhelp.txt.gz /*\\Huge* +\LARGE latexhelp.txt.gz /*\\LARGE* +\Large latexhelp.txt.gz /*\\Large* +\Roman latexhelp.txt.gz /*\\Roman* +\\ latexhelp.txt.gz /*\\\\* +\\\\ latexhelp.txt.gz /*\\\\\\\\* +\addcontentsline latexhelp.txt.gz /*\\addcontentsline* +\address latexhelp.txt.gz /*\\address* +\addtocontents latexhelp.txt.gz /*\\addtocontents* +\addtocounter latexhelp.txt.gz /*\\addtocounter* +\addtolength latexhelp.txt.gz /*\\addtolength* +\addvspace latexhelp.txt.gz /*\\addvspace* +\alph latexhelp.txt.gz /*\\alph* +\and latexhelp.txt.gz /*\\and* +\appendix latexhelp.txt.gz /*\\appendix* +\arabic latexhelp.txt.gz /*\\arabic* +\author latexhelp.txt.gz /*\\author* +\begin latexhelp.txt.gz /*\\begin* +\bfseries latexhelp.txt.gz /*\\bfseries* +\bibitem latexhelp.txt.gz /*\\bibitem* +\bibliography latexhelp.txt.gz /*\\bibliography* +\bibliographystyle latexhelp.txt.gz /*\\bibliographystyle* +\bigskip latexhelp.txt.gz /*\\bigskip* +\cc latexhelp.txt.gz /*\\cc* +\cdots latexhelp.txt.gz /*\\cdots* +\centering latexhelp.txt.gz /*\\centering* +\chapter latexhelp.txt.gz /*\\chapter* +\circle latexhelp.txt.gz /*\\circle* +\cite latexhelp.txt.gz /*\\cite* +\cleardoublepage latexhelp.txt.gz /*\\cleardoublepage* +\clearpage latexhelp.txt.gz /*\\clearpage* +\cline latexhelp.txt.gz /*\\cline* +\closing latexhelp.txt.gz /*\\closing* +\dashbox latexhelp.txt.gz /*\\dashbox* +\date latexhelp.txt.gz /*\\date* +\ddots latexhelp.txt.gz /*\\ddots* +\depth latexhelp.txt.gz /*\\depth* +\documentclass latexhelp.txt.gz /*\\documentclass* +\dotfill latexhelp.txt.gz /*\\dotfill* +\emph latexhelp.txt.gz /*\\emph* +\end latexhelp.txt.gz /*\\end* +\enlargethispage latexhelp.txt.gz /*\\enlargethispage* +\fbox latexhelp.txt.gz /*\\fbox* +\flushbottom latexhelp.txt.gz /*\\flushbottom* +\fnsymbol latexhelp.txt.gz /*\\fnsymbol* +\fontencoding latexhelp.txt.gz /*\\fontencoding* +\fontfamily latexhelp.txt.gz /*\\fontfamily* +\fontseries latexhelp.txt.gz /*\\fontseries* +\fontshape latexhelp.txt.gz /*\\fontshape* +\fontsize latexhelp.txt.gz /*\\fontsize* +\footnote latexhelp.txt.gz /*\\footnote* +\footnotemark latexhelp.txt.gz /*\\footnotemark* +\footnotesize latexhelp.txt.gz /*\\footnotesize* +\footnotetext latexhelp.txt.gz /*\\footnotetext* +\frac latexhelp.txt.gz /*\\frac* +\frame latexhelp.txt.gz /*\\frame* +\framebox latexhelp.txt.gz /*\\framebox* +\fussy latexhelp.txt.gz /*\\fussy* +\height latexhelp.txt.gz /*\\height* +\hfill latexhelp.txt.gz /*\\hfill* +\hline latexhelp.txt.gz /*\\hline* +\hrulefill latexhelp.txt.gz /*\\hrulefill* +\hspace latexhelp.txt.gz /*\\hspace* +\huge latexhelp.txt.gz /*\\huge* +\hyphenation latexhelp.txt.gz /*\\hyphenation* +\include latexhelp.txt.gz /*\\include* +\includeonly latexhelp.txt.gz /*\\includeonly* +\indent latexhelp.txt.gz /*\\indent* +\input latexhelp.txt.gz /*\\input* +\item latexhelp.txt.gz /*\\item* +\itshape latexhelp.txt.gz /*\\itshape* +\kill latexhelp.txt.gz /*\\kill* +\label latexhelp.txt.gz /*\\label* +\large latexhelp.txt.gz /*\\large* +\ldots latexhelp.txt.gz /*\\ldots* +\lefteqn latexhelp.txt.gz /*\\lefteqn* +\letter latexhelp.txt.gz /*\\letter* +\line latexhelp.txt.gz /*\\line* +\linebreak latexhelp.txt.gz /*\\linebreak* +\linethickness latexhelp.txt.gz /*\\linethickness* +\listoffigures latexhelp.txt.gz /*\\listoffigures* +\listoftables latexhelp.txt.gz /*\\listoftables* +\location latexhelp.txt.gz /*\\location* +\lrbox latexhelp.txt.gz /*\\lrbox* +\makebox latexhelp.txt.gz /*\\makebox* +\makelabels latexhelp.txt.gz /*\\makelabels* +\maketitle latexhelp.txt.gz /*\\maketitle* +\marginpar latexhelp.txt.gz /*\\marginpar* +\markboth latexhelp.txt.gz /*\\markboth* +\markright latexhelp.txt.gz /*\\markright* +\mathbf latexhelp.txt.gz /*\\mathbf* +\mathcal latexhelp.txt.gz /*\\mathcal* +\mathit latexhelp.txt.gz /*\\mathit* +\mathnormal latexhelp.txt.gz /*\\mathnormal* +\mathrm latexhelp.txt.gz /*\\mathrm* +\mathsf latexhelp.txt.gz /*\\mathsf* +\mathtt latexhelp.txt.gz /*\\mathtt* +\mathversion latexhelp.txt.gz /*\\mathversion* +\mbox latexhelp.txt.gz /*\\mbox* +\mdseries latexhelp.txt.gz /*\\mdseries* +\medskip latexhelp.txt.gz /*\\medskip* +\multicolumn latexhelp.txt.gz /*\\multicolumn* +\multiput latexhelp.txt.gz /*\\multiput* +\name latexhelp.txt.gz /*\\name* +\newcommand latexhelp.txt.gz /*\\newcommand* +\newcounter latexhelp.txt.gz /*\\newcounter* +\newenvironment latexhelp.txt.gz /*\\newenvironment* +\newfont latexhelp.txt.gz /*\\newfont* +\newlength latexhelp.txt.gz /*\\newlength* +\newline latexhelp.txt.gz /*\\newline* +\newpage latexhelp.txt.gz /*\\newpage* +\newsavebox latexhelp.txt.gz /*\\newsavebox* +\newtheorem latexhelp.txt.gz /*\\newtheorem* +\nocite latexhelp.txt.gz /*\\nocite* +\nofiles latexhelp.txt.gz /*\\nofiles* +\noindent latexhelp.txt.gz /*\\noindent* +\nolinebreak latexhelp.txt.gz /*\\nolinebreak* +\nonumber latexhelp.txt.gz /*\\nonumber* +\nopagebreak latexhelp.txt.gz /*\\nopagebreak* +\normalfont latexhelp.txt.gz /*\\normalfont* +\normalsize latexhelp.txt.gz /*\\normalsize* +\onecolumn latexhelp.txt.gz /*\\onecolumn* +\opening latexhelp.txt.gz /*\\opening* +\oval latexhelp.txt.gz /*\\oval* +\overbrace latexhelp.txt.gz /*\\overbrace* +\overline latexhelp.txt.gz /*\\overline* +\pagebreak latexhelp.txt.gz /*\\pagebreak* +\pagenumbering latexhelp.txt.gz /*\\pagenumbering* +\pageref latexhelp.txt.gz /*\\pageref* +\pagestyle latexhelp.txt.gz /*\\pagestyle* +\par latexhelp.txt.gz /*\\par* +\paragraph latexhelp.txt.gz /*\\paragraph* +\parbox latexhelp.txt.gz /*\\parbox* +\part latexhelp.txt.gz /*\\part* +\picture-framebox latexhelp.txt.gz /*\\picture-framebox* +\ps latexhelp.txt.gz /*\\ps* +\pushtabs latexhelp.txt.gz /*\\pushtabs* +\put latexhelp.txt.gz /*\\put* +\raggedbottom latexhelp.txt.gz /*\\raggedbottom* +\raggedleft latexhelp.txt.gz /*\\raggedleft* +\raggedright latexhelp.txt.gz /*\\raggedright* +\raisebox latexhelp.txt.gz /*\\raisebox* +\ref latexhelp.txt.gz /*\\ref* +\refstepcounter latexhelp.txt.gz /*\\refstepcounter* +\renewcommand latexhelp.txt.gz /*\\renewcommand* +\renewenvironment latexhelp.txt.gz /*\\renewenvironment* +\reversemarginpar latexhelp.txt.gz /*\\reversemarginpar* +\rmfamily latexhelp.txt.gz /*\\rmfamily* +\roman latexhelp.txt.gz /*\\roman* +\rule latexhelp.txt.gz /*\\rule* +\savebox latexhelp.txt.gz /*\\savebox* +\sbox latexhelp.txt.gz /*\\sbox* +\scriptsize latexhelp.txt.gz /*\\scriptsize* +\scshape latexhelp.txt.gz /*\\scshape* +\section latexhelp.txt.gz /*\\section* +\selectfont latexhelp.txt.gz /*\\selectfont* +\setcounter latexhelp.txt.gz /*\\setcounter* +\setlength latexhelp.txt.gz /*\\setlength* +\settodepth latexhelp.txt.gz /*\\settodepth* +\settoheight latexhelp.txt.gz /*\\settoheight* +\settowidth latexhelp.txt.gz /*\\settowidth* +\sffamily latexhelp.txt.gz /*\\sffamily* +\shortstack latexhelp.txt.gz /*\\shortstack* +\signature latexhelp.txt.gz /*\\signature* +\sloppy latexhelp.txt.gz /*\\sloppy* +\slshape latexhelp.txt.gz /*\\slshape* +\small latexhelp.txt.gz /*\\small* +\smallskip latexhelp.txt.gz /*\\smallskip* +\space latexhelp.txt.gz /*\\space* +\sqrt latexhelp.txt.gz /*\\sqrt* +\startbreaks latexhelp.txt.gz /*\\startbreaks* +\stepcounter latexhelp.txt.gz /*\\stepcounter* +\stopbreaks latexhelp.txt.gz /*\\stopbreaks* +\subparagraph latexhelp.txt.gz /*\\subparagraph* +\subsection latexhelp.txt.gz /*\\subsection* +\subsubsection latexhelp.txt.gz /*\\subsubsection* +\symbol latexhelp.txt.gz /*\\symbol* +\table latexhelp.txt.gz /*\\table* +\tableofcontents latexhelp.txt.gz /*\\tableofcontents* +\telephone latexhelp.txt.gz /*\\telephone* +\textbf latexhelp.txt.gz /*\\textbf* +\textit latexhelp.txt.gz /*\\textit* +\textmd latexhelp.txt.gz /*\\textmd* +\textnormal latexhelp.txt.gz /*\\textnormal* +\textrm latexhelp.txt.gz /*\\textrm* +\textsc latexhelp.txt.gz /*\\textsc* +\textsf latexhelp.txt.gz /*\\textsf* +\textsl latexhelp.txt.gz /*\\textsl* +\texttt latexhelp.txt.gz /*\\texttt* +\textup latexhelp.txt.gz /*\\textup* +\thanks latexhelp.txt.gz /*\\thanks* +\thebibliography latexhelp.txt.gz /*\\thebibliography* +\thispagestyle latexhelp.txt.gz /*\\thispagestyle* +\tiny latexhelp.txt.gz /*\\tiny* +\title latexhelp.txt.gz /*\\title* +\totalheight latexhelp.txt.gz /*\\totalheight* +\ttfamily latexhelp.txt.gz /*\\ttfamily* +\twocolumn latexhelp.txt.gz /*\\twocolumn* +\typein latexhelp.txt.gz /*\\typein* +\typeout latexhelp.txt.gz /*\\typeout* +\underbrace latexhelp.txt.gz /*\\underbrace* +\underline latexhelp.txt.gz /*\\underline* +\upshape latexhelp.txt.gz /*\\upshape* +\usebox latexhelp.txt.gz /*\\usebox* +\usecounter latexhelp.txt.gz /*\\usecounter* +\usefont latexhelp.txt.gz /*\\usefont* +\usepackage latexhelp.txt.gz /*\\usepackage* +\value latexhelp.txt.gz /*\\value* +\vdots latexhelp.txt.gz /*\\vdots* +\vector latexhelp.txt.gz /*\\vector* +\verb latexhelp.txt.gz /*\\verb* +\vfill latexhelp.txt.gz /*\\vfill* +\vline latexhelp.txt.gz /*\\vline* +\vspace latexhelp.txt.gz /*\\vspace* +\width latexhelp.txt.gz /*\\width* +adding-bib-options latex-suite.txt.gz /*adding-bib-options* +alph latexhelp.txt.gz /*alph* +altkey-mappings latex-suite.txt.gz /*altkey-mappings* +arabic latexhelp.txt.gz /*arabic* +array latexhelp.txt.gz /*array* +article-class latexhelp.txt.gz /*article-class* +auc-tex-mappings latex-suite.txt.gz /*auc-tex-mappings* +automatic-package-detection latex-suite.txt.gz /*automatic-package-detection* +bibtex latexhelp.txt.gz /*bibtex* +bibtex-bindings latex-suite.txt.gz /*bibtex-bindings* +book-class latexhelp.txt.gz /*book-class* +center latexhelp.txt.gz /*center* +changing-commands latex-suite.txt.gz /*changing-commands* +changing-environments latex-suite.txt.gz /*changing-environments* +cite-search-caching latex-suite.txt.gz /*cite-search-caching* +compiler-dependency latex-suite.txt.gz /*compiler-dependency* +compiler-output-customization latex-suite.txt.gz /*compiler-output-customization* +compiler-rules latex-suite.txt.gz /*compiler-rules* +compiling-multiple latex-suite.txt.gz /*compiling-multiple* +completion-window-preferences latex-suite.txt.gz /*completion-window-preferences* +custom-macros-menu latex-suite.txt.gz /*custom-macros-menu* +custom-packages latex-suite.txt.gz /*custom-packages* +customize-alt-key-maps latex-suite.txt.gz /*customize-alt-key-maps* +customize-imap-maps latex-suite.txt.gz /*customize-imap-maps* +customizing-compiling latex-suite.txt.gz /*customizing-compiling* +customizing-folding latex-suite.txt.gz /*customizing-folding* +customizing-latex-completion latex-suite.txt.gz /*customizing-latex-completion* +customizing-latex-suite latex-suite.txt.gz /*customizing-latex-suite* +customizing-macros latex-suite.txt.gz /*customizing-macros* +customizing-menus latex-suite.txt.gz /*customizing-menus* +customizing-packages latex-suite.txt.gz /*customizing-packages* +customizing-place-holders latex-suite.txt.gz /*customizing-place-holders* +customizing-smart-keys latex-suite.txt.gz /*customizing-smart-keys* +customizing-viewing latex-suite.txt.gz /*customizing-viewing* +customizing-what-to-fold latex-suite.txt.gz /*customizing-what-to-fold* +default-folding latex-suite.txt.gz /*default-folding* +description latexhelp.txt.gz /*description* +diacritic-mappings latex-suite.txt.gz /*diacritic-mappings* +displaymath latexhelp.txt.gz /*displaymath* +draft latexhelp.txt.gz /*draft* +editing-folding latex-suite.txt.gz /*editing-folding* +empty latexhelp.txt.gz /*empty* +enabling-searching latex-suite.txt.gz /*enabling-searching* +enclosing-commands latex-suite.txt.gz /*enclosing-commands* +enclosing-env-f5 latex-suite.txt.gz /*enclosing-env-f5* +enclosing-env-threeletter latex-suite.txt.gz /*enclosing-env-threeletter* +enclosing-environments latex-suite.txt.gz /*enclosing-environments* +enumerate latexhelp.txt.gz /*enumerate* +environment-mappings latex-suite.txt.gz /*environment-mappings* +eqnarray latexhelp.txt.gz /*eqnarray* +equation latexhelp.txt.gz /*equation* +figure latexhelp.txt.gz /*figure* +final latexhelp.txt.gz /*final* +fleqn latexhelp.txt.gz /*fleqn* +flushleft latexhelp.txt.gz /*flushleft* +flushright latexhelp.txt.gz /*flushright* +fold-setting-adding latex-suite.txt.gz /*fold-setting-adding* +fold-setting-advanced latex-suite.txt.gz /*fold-setting-advanced* +font-lowlevelcommands latexhelp.txt.gz /*font-lowlevelcommands* +font-maps latex-suite.txt.gz /*font-maps* +font-size latexhelp.txt.gz /*font-size* +font-styles latexhelp.txt.gz /*font-styles* +forward-searching latex-suite.txt.gz /*forward-searching* +greek-letter-mappings latex-suite.txt.gz /*greek-letter-mappings* +headings latexhelp.txt.gz /*headings* +hyph- latexhelp.txt.gz /*hyph-* +im_1 imaps.txt.gz /*im_1* +imaps-usage imaps.txt.gz /*imaps-usage* +imaps.txt imaps.txt.gz /*imaps.txt* +imaps.txt-toc imaps.txt.gz /*imaps.txt-toc* +inserting-commands latex-suite.txt.gz /*inserting-commands* +inserting-env-f5 latex-suite.txt.gz /*inserting-env-f5* +inserting-env-shift-f1 latex-suite.txt.gz /*inserting-env-shift-f1* +inserting-env-threeletter latex-suite.txt.gz /*inserting-env-threeletter* +inserting-environments latex-suite.txt.gz /*inserting-environments* +inserting-packages latex-suite.txt.gz /*inserting-packages* +inverse-searching latex-suite.txt.gz /*inverse-searching* +itemize latexhelp.txt.gz /*itemize* +landscape latexhelp.txt.gz /*landscape* +latex latexhelp.txt.gz /*latex* +latex-boxes latexhelp.txt.gz /*latex-boxes* +latex-breaking latexhelp.txt.gz /*latex-breaking* +latex-classes latexhelp.txt.gz /*latex-classes* +latex-command-maps latex-suite.txt.gz /*latex-command-maps* +latex-commands latexhelp.txt.gz /*latex-commands* +latex-compiling latex-suite.txt.gz /*latex-compiling* +latex-completion latex-suite.txt.gz /*latex-completion* +latex-completion-cite latex-suite.txt.gz /*latex-completion-cite* +latex-counters latexhelp.txt.gz /*latex-counters* +latex-definitions latexhelp.txt.gz /*latex-definitions* +latex-environments latexhelp.txt.gz /*latex-environments* +latex-folding latex-suite.txt.gz /*latex-folding* +latex-footnotes latexhelp.txt.gz /*latex-footnotes* +latex-hor-space latexhelp.txt.gz /*latex-hor-space* +latex-inputting latexhelp.txt.gz /*latex-inputting* +latex-layout latexhelp.txt.gz /*latex-layout* +latex-lengths latexhelp.txt.gz /*latex-lengths* +latex-letters latexhelp.txt.gz /*latex-letters* +latex-macros latex-suite.txt.gz /*latex-macros* +latex-margin-notes latexhelp.txt.gz /*latex-margin-notes* +latex-master-file latex-suite.txt.gz /*latex-master-file* +latex-master-file-specification latex-suite.txt.gz /*latex-master-file-specification* +latex-math latexhelp.txt.gz /*latex-math* +latex-modes latexhelp.txt.gz /*latex-modes* +latex-package-scanning latex-suite.txt.gz /*latex-package-scanning* +latex-packages latex-suite.txt.gz /*latex-packages* +latex-page-styles latexhelp.txt.gz /*latex-page-styles* +latex-paragraphs latexhelp.txt.gz /*latex-paragraphs* +latex-parameters latexhelp.txt.gz /*latex-parameters* +latex-project latex-suite.txt.gz /*latex-project* +latex-project-example latex-suite.txt.gz /*latex-project-example* +latex-project-settings latex-suite.txt.gz /*latex-project-settings* +latex-references latexhelp.txt.gz /*latex-references* +latex-sectioning latexhelp.txt.gz /*latex-sectioning* +latex-spaces-boxes latexhelp.txt.gz /*latex-spaces-boxes* +latex-special latexhelp.txt.gz /*latex-special* +latex-start-end latexhelp.txt.gz /*latex-start-end* +latex-suite-commands latex-suite.txt.gz /*latex-suite-commands* +latex-suite-commands-maps latex-suite.txt.gz /*latex-suite-commands-maps* +latex-suite-credits latex-suite.txt.gz /*latex-suite-credits* +latex-suite-maintainer latex-suite.txt.gz /*latex-suite-maintainer* +latex-suite-maps latex-suite.txt.gz /*latex-suite-maps* +latex-suite-quickstart.txt latex-suite-quickstart.txt.gz /*latex-suite-quickstart.txt* +latex-suite-quickstart.txt-toc latex-suite-quickstart.txt.gz /*latex-suite-quickstart.txt-toc* +latex-suite-templates latex-suite.txt.gz /*latex-suite-templates* +latex-suite.txt latex-suite.txt.gz /*latex-suite.txt* +latex-suite.txt-toc latex-suite.txt.gz /*latex-suite.txt-toc* +latex-terminal latexhelp.txt.gz /*latex-terminal* +latex-toc latexhelp.txt.gz /*latex-toc* +latex-typefaces latexhelp.txt.gz /*latex-typefaces* +latex-ver-space latexhelp.txt.gz /*latex-ver-space* +latex-viewing latex-suite.txt.gz /*latex-viewing* +latex-viewing-rules latex-suite.txt.gz /*latex-viewing-rules* +latexhelp.txt latexhelp.txt.gz /*latexhelp.txt* +leqno latexhelp.txt.gz /*leqno* +letter-class latexhelp.txt.gz /*letter-class* +list latexhelp.txt.gz /*list* +lq_1 latex-suite-quickstart.txt.gz /*lq_1* +lq_10 latex-suite-quickstart.txt.gz /*lq_10* +lq_2 latex-suite-quickstart.txt.gz /*lq_2* +lq_3 latex-suite-quickstart.txt.gz /*lq_3* +lq_4 latex-suite-quickstart.txt.gz /*lq_4* +lq_5 latex-suite-quickstart.txt.gz /*lq_5* +lq_6 latex-suite-quickstart.txt.gz /*lq_6* +lq_7 latex-suite-quickstart.txt.gz /*lq_7* +lq_8 latex-suite-quickstart.txt.gz /*lq_8* +lq_8_1 latex-suite-quickstart.txt.gz /*lq_8_1* +lq_9 latex-suite-quickstart.txt.gz /*lq_9* +lq_9_1 latex-suite-quickstart.txt.gz /*lq_9_1* +lq_9_2 latex-suite-quickstart.txt.gz /*lq_9_2* +lq_a_bc latex-suite-quickstart.txt.gz /*lq_a_bc* +lq_a_bd latex-suite-quickstart.txt.gz /*lq_a_bd* +lq_a_be latex-suite-quickstart.txt.gz /*lq_a_be* +lq_a_bf latex-suite-quickstart.txt.gz /*lq_a_bf* +lq_a_bg latex-suite-quickstart.txt.gz /*lq_a_bg* +lq_a_bh latex-suite-quickstart.txt.gz /*lq_a_bh* +lq_a_bi latex-suite-quickstart.txt.gz /*lq_a_bi* +lq_a_bj latex-suite-quickstart.txt.gz /*lq_a_bj* +lq_a_bk latex-suite-quickstart.txt.gz /*lq_a_bk* +lq_a_bl latex-suite-quickstart.txt.gz /*lq_a_bl* +lq_a_bm latex-suite-quickstart.txt.gz /*lq_a_bm* +lq_a_bn latex-suite-quickstart.txt.gz /*lq_a_bn* +lq_a_bo latex-suite-quickstart.txt.gz /*lq_a_bo* +lq_u_1 latex-suite-quickstart.txt.gz /*lq_u_1* +lq_u_2 latex-suite-quickstart.txt.gz /*lq_u_2* +lq_u_3 latex-suite-quickstart.txt.gz /*lq_u_3* +lq_u_4 latex-suite-quickstart.txt.gz /*lq_u_4* +lq_u_5 latex-suite-quickstart.txt.gz /*lq_u_5* +lq_u_6 latex-suite-quickstart.txt.gz /*lq_u_6* +lq_u_7 latex-suite-quickstart.txt.gz /*lq_u_7* +lq_u_8 latex-suite-quickstart.txt.gz /*lq_u_8* +lq_u_9 latex-suite-quickstart.txt.gz /*lq_u_9* +lr-mode latexhelp.txt.gz /*lr-mode* +ls-completion-custom latex-suite.txt.gz /*ls-completion-custom* +ls-completion-ref latex-suite.txt.gz /*ls-completion-ref* +ls-completion-usage latex-suite.txt.gz /*ls-completion-usage* +ls-filename-completion latex-suite.txt.gz /*ls-filename-completion* +ls-general-purpose-settings latex-suite.txt.gz /*ls-general-purpose-settings* +ls-imap-f7 latex-suite.txt.gz /*ls-imap-f7* +ls-imap-s-f7 latex-suite.txt.gz /*ls-imap-s-f7* +ls-imaps-syntax latex-suite.txt.gz /*ls-imaps-syntax* +ls-new-macros latex-suite.txt.gz /*ls-new-macros* +ls-set-grepprg latex-suite.txt.gz /*ls-set-grepprg* +ls-vmap-f7 latex-suite.txt.gz /*ls-vmap-f7* +ls_1 latex-suite.txt.gz /*ls_1* +ls_10 latex-suite.txt.gz /*ls_10* +ls_10_1 latex-suite.txt.gz /*ls_10_1* +ls_10_1_1 latex-suite.txt.gz /*ls_10_1_1* +ls_10_1_2 latex-suite.txt.gz /*ls_10_1_2* +ls_10_2 latex-suite.txt.gz /*ls_10_2* +ls_10_2_1 latex-suite.txt.gz /*ls_10_2_1* +ls_10_2_10 latex-suite.txt.gz /*ls_10_2_10* +ls_10_2_11 latex-suite.txt.gz /*ls_10_2_11* +ls_10_2_12 latex-suite.txt.gz /*ls_10_2_12* +ls_10_2_13 latex-suite.txt.gz /*ls_10_2_13* +ls_10_2_14 latex-suite.txt.gz /*ls_10_2_14* +ls_10_2_15 latex-suite.txt.gz /*ls_10_2_15* +ls_10_2_16 latex-suite.txt.gz /*ls_10_2_16* +ls_10_2_2 latex-suite.txt.gz /*ls_10_2_2* +ls_10_2_3 latex-suite.txt.gz /*ls_10_2_3* +ls_10_2_4 latex-suite.txt.gz /*ls_10_2_4* +ls_10_2_5 latex-suite.txt.gz /*ls_10_2_5* +ls_10_2_6 latex-suite.txt.gz /*ls_10_2_6* +ls_10_2_7 latex-suite.txt.gz /*ls_10_2_7* +ls_10_2_8 latex-suite.txt.gz /*ls_10_2_8* +ls_10_2_9 latex-suite.txt.gz /*ls_10_2_9* +ls_11 latex-suite.txt.gz /*ls_11* +ls_11_1 latex-suite.txt.gz /*ls_11_1* +ls_11_10 latex-suite.txt.gz /*ls_11_10* +ls_11_10_1 latex-suite.txt.gz /*ls_11_10_1* +ls_11_1_1 latex-suite.txt.gz /*ls_11_1_1* +ls_11_1_2 latex-suite.txt.gz /*ls_11_1_2* +ls_11_2 latex-suite.txt.gz /*ls_11_2* +ls_11_2_1 latex-suite.txt.gz /*ls_11_2_1* +ls_11_2_2 latex-suite.txt.gz /*ls_11_2_2* +ls_11_2_3 latex-suite.txt.gz /*ls_11_2_3* +ls_11_2_4 latex-suite.txt.gz /*ls_11_2_4* +ls_11_3 latex-suite.txt.gz /*ls_11_3* +ls_11_3_1 latex-suite.txt.gz /*ls_11_3_1* +ls_11_3_10 latex-suite.txt.gz /*ls_11_3_10* +ls_11_3_11 latex-suite.txt.gz /*ls_11_3_11* +ls_11_3_12 latex-suite.txt.gz /*ls_11_3_12* +ls_11_3_13 latex-suite.txt.gz /*ls_11_3_13* +ls_11_3_2 latex-suite.txt.gz /*ls_11_3_2* +ls_11_3_3 latex-suite.txt.gz /*ls_11_3_3* +ls_11_3_4 latex-suite.txt.gz /*ls_11_3_4* +ls_11_3_5 latex-suite.txt.gz /*ls_11_3_5* +ls_11_3_6 latex-suite.txt.gz /*ls_11_3_6* +ls_11_3_7 latex-suite.txt.gz /*ls_11_3_7* +ls_11_3_8 latex-suite.txt.gz /*ls_11_3_8* +ls_11_3_9 latex-suite.txt.gz /*ls_11_3_9* +ls_11_4 latex-suite.txt.gz /*ls_11_4* +ls_11_4_1 latex-suite.txt.gz /*ls_11_4_1* +ls_11_4_2 latex-suite.txt.gz /*ls_11_4_2* +ls_11_5 latex-suite.txt.gz /*ls_11_5* +ls_11_5_1 latex-suite.txt.gz /*ls_11_5_1* +ls_11_5_2 latex-suite.txt.gz /*ls_11_5_2* +ls_11_5_3 latex-suite.txt.gz /*ls_11_5_3* +ls_11_5_4 latex-suite.txt.gz /*ls_11_5_4* +ls_11_5_5 latex-suite.txt.gz /*ls_11_5_5* +ls_11_6 latex-suite.txt.gz /*ls_11_6* +ls_11_6_1 latex-suite.txt.gz /*ls_11_6_1* +ls_11_6_2 latex-suite.txt.gz /*ls_11_6_2* +ls_11_6_3 latex-suite.txt.gz /*ls_11_6_3* +ls_11_6_4 latex-suite.txt.gz /*ls_11_6_4* +ls_11_6_5 latex-suite.txt.gz /*ls_11_6_5* +ls_11_6_6 latex-suite.txt.gz /*ls_11_6_6* +ls_11_6_7 latex-suite.txt.gz /*ls_11_6_7* +ls_11_6_8 latex-suite.txt.gz /*ls_11_6_8* +ls_11_7 latex-suite.txt.gz /*ls_11_7* +ls_11_7_1 latex-suite.txt.gz /*ls_11_7_1* +ls_11_7_2 latex-suite.txt.gz /*ls_11_7_2* +ls_11_8 latex-suite.txt.gz /*ls_11_8* +ls_11_8_1 latex-suite.txt.gz /*ls_11_8_1* +ls_11_8_2 latex-suite.txt.gz /*ls_11_8_2* +ls_11_8_3 latex-suite.txt.gz /*ls_11_8_3* +ls_11_8_4 latex-suite.txt.gz /*ls_11_8_4* +ls_11_8_5 latex-suite.txt.gz /*ls_11_8_5* +ls_11_8_6 latex-suite.txt.gz /*ls_11_8_6* +ls_11_8_7 latex-suite.txt.gz /*ls_11_8_7* +ls_11_9 latex-suite.txt.gz /*ls_11_9* +ls_11_9_1 latex-suite.txt.gz /*ls_11_9_1* +ls_11_9_2 latex-suite.txt.gz /*ls_11_9_2* +ls_12 latex-suite.txt.gz /*ls_12* +ls_2 latex-suite.txt.gz /*ls_2* +ls_3 latex-suite.txt.gz /*ls_3* +ls_3_1 latex-suite.txt.gz /*ls_3_1* +ls_3_10 latex-suite.txt.gz /*ls_3_10* +ls_3_10_1 latex-suite.txt.gz /*ls_3_10_1* +ls_3_10_2 latex-suite.txt.gz /*ls_3_10_2* +ls_3_10_3 latex-suite.txt.gz /*ls_3_10_3* +ls_3_10_4 latex-suite.txt.gz /*ls_3_10_4* +ls_3_11 latex-suite.txt.gz /*ls_3_11* +ls_3_12 latex-suite.txt.gz /*ls_3_12* +ls_3_12_1 latex-suite.txt.gz /*ls_3_12_1* +ls_3_12_2 latex-suite.txt.gz /*ls_3_12_2* +ls_3_1_1 latex-suite.txt.gz /*ls_3_1_1* +ls_3_1_1_1 latex-suite.txt.gz /*ls_3_1_1_1* +ls_3_1_1_2 latex-suite.txt.gz /*ls_3_1_1_2* +ls_3_1_1_3 latex-suite.txt.gz /*ls_3_1_1_3* +ls_3_1_2 latex-suite.txt.gz /*ls_3_1_2* +ls_3_1_2_1 latex-suite.txt.gz /*ls_3_1_2_1* +ls_3_1_2_2 latex-suite.txt.gz /*ls_3_1_2_2* +ls_3_1_3 latex-suite.txt.gz /*ls_3_1_3* +ls_3_2 latex-suite.txt.gz /*ls_3_2* +ls_3_2_1 latex-suite.txt.gz /*ls_3_2_1* +ls_3_2_2 latex-suite.txt.gz /*ls_3_2_2* +ls_3_2_3 latex-suite.txt.gz /*ls_3_2_3* +ls_3_3 latex-suite.txt.gz /*ls_3_3* +ls_3_4 latex-suite.txt.gz /*ls_3_4* +ls_3_5 latex-suite.txt.gz /*ls_3_5* +ls_3_6 latex-suite.txt.gz /*ls_3_6* +ls_3_7 latex-suite.txt.gz /*ls_3_7* +ls_3_8 latex-suite.txt.gz /*ls_3_8* +ls_3_8_1 latex-suite.txt.gz /*ls_3_8_1* +ls_3_9 latex-suite.txt.gz /*ls_3_9* +ls_4 latex-suite.txt.gz /*ls_4* +ls_4_1 latex-suite.txt.gz /*ls_4_1* +ls_4_2 latex-suite.txt.gz /*ls_4_2* +ls_4_3 latex-suite.txt.gz /*ls_4_3* +ls_4_3_1 latex-suite.txt.gz /*ls_4_3_1* +ls_4_4 latex-suite.txt.gz /*ls_4_4* +ls_4_4_1 latex-suite.txt.gz /*ls_4_4_1* +ls_4_4_2 latex-suite.txt.gz /*ls_4_4_2* +ls_5 latex-suite.txt.gz /*ls_5* +ls_5_1 latex-suite.txt.gz /*ls_5_1* +ls_5_2 latex-suite.txt.gz /*ls_5_2* +ls_5_3 latex-suite.txt.gz /*ls_5_3* +ls_5_3_1 latex-suite.txt.gz /*ls_5_3_1* +ls_5_4 latex-suite.txt.gz /*ls_5_4* +ls_5_5 latex-suite.txt.gz /*ls_5_5* +ls_6 latex-suite.txt.gz /*ls_6* +ls_6_1 latex-suite.txt.gz /*ls_6_1* +ls_6_2 latex-suite.txt.gz /*ls_6_2* +ls_6_3 latex-suite.txt.gz /*ls_6_3* +ls_6_4 latex-suite.txt.gz /*ls_6_4* +ls_6_5 latex-suite.txt.gz /*ls_6_5* +ls_7 latex-suite.txt.gz /*ls_7* +ls_7_1 latex-suite.txt.gz /*ls_7_1* +ls_7_2 latex-suite.txt.gz /*ls_7_2* +ls_7_3 latex-suite.txt.gz /*ls_7_3* +ls_8 latex-suite.txt.gz /*ls_8* +ls_8_1 latex-suite.txt.gz /*ls_8_1* +ls_8_2 latex-suite.txt.gz /*ls_8_2* +ls_8_2_1 latex-suite.txt.gz /*ls_8_2_1* +ls_8_2_2 latex-suite.txt.gz /*ls_8_2_2* +ls_8_2_3 latex-suite.txt.gz /*ls_8_2_3* +ls_8_2_4 latex-suite.txt.gz /*ls_8_2_4* +ls_8_2_5 latex-suite.txt.gz /*ls_8_2_5* +ls_8_3 latex-suite.txt.gz /*ls_8_3* +ls_9 latex-suite.txt.gz /*ls_9* +ls_9_1 latex-suite.txt.gz /*ls_9_1* +ls_9_2 latex-suite.txt.gz /*ls_9_2* +ls_a_bA latex-suite.txt.gz /*ls_a_bA* +ls_a_bB latex-suite.txt.gz /*ls_a_bB* +ls_a_bC latex-suite.txt.gz /*ls_a_bC* +ls_a_bD latex-suite.txt.gz /*ls_a_bD* +ls_a_bE latex-suite.txt.gz /*ls_a_bE* +ls_a_bF latex-suite.txt.gz /*ls_a_bF* +ls_a_bG latex-suite.txt.gz /*ls_a_bG* +ls_a_bH latex-suite.txt.gz /*ls_a_bH* +ls_a_bI latex-suite.txt.gz /*ls_a_bI* +ls_a_bJ latex-suite.txt.gz /*ls_a_bJ* +ls_a_bK latex-suite.txt.gz /*ls_a_bK* +ls_a_bL latex-suite.txt.gz /*ls_a_bL* +ls_a_bM latex-suite.txt.gz /*ls_a_bM* +ls_a_bN latex-suite.txt.gz /*ls_a_bN* +ls_a_bO latex-suite.txt.gz /*ls_a_bO* +ls_a_bP latex-suite.txt.gz /*ls_a_bP* +ls_a_bQ latex-suite.txt.gz /*ls_a_bQ* +ls_a_bR latex-suite.txt.gz /*ls_a_bR* +ls_a_bS latex-suite.txt.gz /*ls_a_bS* +ls_a_bT latex-suite.txt.gz /*ls_a_bT* +ls_a_bU latex-suite.txt.gz /*ls_a_bU* +ls_a_bV latex-suite.txt.gz /*ls_a_bV* +ls_a_bW latex-suite.txt.gz /*ls_a_bW* +ls_a_bX latex-suite.txt.gz /*ls_a_bX* +ls_a_bY latex-suite.txt.gz /*ls_a_bY* +ls_a_bZ latex-suite.txt.gz /*ls_a_bZ* +ls_a_bc latex-suite.txt.gz /*ls_a_bc* +ls_a_bd latex-suite.txt.gz /*ls_a_bd* +ls_a_be latex-suite.txt.gz /*ls_a_be* +ls_a_bf latex-suite.txt.gz /*ls_a_bf* +ls_a_bg latex-suite.txt.gz /*ls_a_bg* +ls_a_bh latex-suite.txt.gz /*ls_a_bh* +ls_a_bi latex-suite.txt.gz /*ls_a_bi* +ls_a_bj latex-suite.txt.gz /*ls_a_bj* +ls_a_bk latex-suite.txt.gz /*ls_a_bk* +ls_a_bl latex-suite.txt.gz /*ls_a_bl* +ls_a_bm latex-suite.txt.gz /*ls_a_bm* +ls_a_bn latex-suite.txt.gz /*ls_a_bn* +ls_a_bo latex-suite.txt.gz /*ls_a_bo* +ls_a_bp latex-suite.txt.gz /*ls_a_bp* +ls_a_bq latex-suite.txt.gz /*ls_a_bq* +ls_a_br latex-suite.txt.gz /*ls_a_br* +ls_a_bs latex-suite.txt.gz /*ls_a_bs* +ls_a_bt latex-suite.txt.gz /*ls_a_bt* +ls_a_bu latex-suite.txt.gz /*ls_a_bu* +ls_a_bv latex-suite.txt.gz /*ls_a_bv* +ls_a_bw latex-suite.txt.gz /*ls_a_bw* +ls_a_bx latex-suite.txt.gz /*ls_a_bx* +ls_a_by latex-suite.txt.gz /*ls_a_by* +ls_a_bz latex-suite.txt.gz /*ls_a_bz* +ls_a_cA latex-suite.txt.gz /*ls_a_cA* +ls_a_cB latex-suite.txt.gz /*ls_a_cB* +ls_a_cC latex-suite.txt.gz /*ls_a_cC* +ls_a_cD latex-suite.txt.gz /*ls_a_cD* +ls_a_cE latex-suite.txt.gz /*ls_a_cE* +ls_a_cF latex-suite.txt.gz /*ls_a_cF* +ls_a_cG latex-suite.txt.gz /*ls_a_cG* +ls_a_cH latex-suite.txt.gz /*ls_a_cH* +ls_a_cI latex-suite.txt.gz /*ls_a_cI* +ls_a_cJ latex-suite.txt.gz /*ls_a_cJ* +ls_a_cK latex-suite.txt.gz /*ls_a_cK* +ls_a_cL latex-suite.txt.gz /*ls_a_cL* +ls_a_cM latex-suite.txt.gz /*ls_a_cM* +ls_a_cN latex-suite.txt.gz /*ls_a_cN* +ls_a_cO latex-suite.txt.gz /*ls_a_cO* +ls_a_cP latex-suite.txt.gz /*ls_a_cP* +ls_a_cQ latex-suite.txt.gz /*ls_a_cQ* +ls_a_cR latex-suite.txt.gz /*ls_a_cR* +ls_a_cS latex-suite.txt.gz /*ls_a_cS* +ls_a_cT latex-suite.txt.gz /*ls_a_cT* +ls_a_cU latex-suite.txt.gz /*ls_a_cU* +ls_a_cV latex-suite.txt.gz /*ls_a_cV* +ls_a_cW latex-suite.txt.gz /*ls_a_cW* +ls_a_cX latex-suite.txt.gz /*ls_a_cX* +ls_a_cY latex-suite.txt.gz /*ls_a_cY* +ls_a_cZ latex-suite.txt.gz /*ls_a_cZ* +ls_a_ca latex-suite.txt.gz /*ls_a_ca* +ls_a_cb latex-suite.txt.gz /*ls_a_cb* +ls_a_cc latex-suite.txt.gz /*ls_a_cc* +ls_a_cd latex-suite.txt.gz /*ls_a_cd* +ls_a_ce latex-suite.txt.gz /*ls_a_ce* +ls_a_cf latex-suite.txt.gz /*ls_a_cf* +ls_a_cg latex-suite.txt.gz /*ls_a_cg* +ls_a_ch latex-suite.txt.gz /*ls_a_ch* +ls_a_ci latex-suite.txt.gz /*ls_a_ci* +ls_a_cj latex-suite.txt.gz /*ls_a_cj* +ls_a_ck latex-suite.txt.gz /*ls_a_ck* +ls_a_cl latex-suite.txt.gz /*ls_a_cl* +ls_a_cm latex-suite.txt.gz /*ls_a_cm* +ls_a_cn latex-suite.txt.gz /*ls_a_cn* +ls_a_co latex-suite.txt.gz /*ls_a_co* +ls_a_cp latex-suite.txt.gz /*ls_a_cp* +ls_a_cq latex-suite.txt.gz /*ls_a_cq* +ls_a_cr latex-suite.txt.gz /*ls_a_cr* +ls_a_cs latex-suite.txt.gz /*ls_a_cs* +ls_a_ct latex-suite.txt.gz /*ls_a_ct* +ls_a_cu latex-suite.txt.gz /*ls_a_cu* +ls_a_cv latex-suite.txt.gz /*ls_a_cv* +ls_a_cw latex-suite.txt.gz /*ls_a_cw* +ls_a_cx latex-suite.txt.gz /*ls_a_cx* +ls_a_cy latex-suite.txt.gz /*ls_a_cy* +ls_a_cz latex-suite.txt.gz /*ls_a_cz* +ls_a_dA latex-suite.txt.gz /*ls_a_dA* +ls_a_dB latex-suite.txt.gz /*ls_a_dB* +ls_a_dC latex-suite.txt.gz /*ls_a_dC* +ls_a_dD latex-suite.txt.gz /*ls_a_dD* +ls_a_dE latex-suite.txt.gz /*ls_a_dE* +ls_a_dF latex-suite.txt.gz /*ls_a_dF* +ls_a_dG latex-suite.txt.gz /*ls_a_dG* +ls_a_dH latex-suite.txt.gz /*ls_a_dH* +ls_a_dI latex-suite.txt.gz /*ls_a_dI* +ls_a_dJ latex-suite.txt.gz /*ls_a_dJ* +ls_a_dK latex-suite.txt.gz /*ls_a_dK* +ls_a_dL latex-suite.txt.gz /*ls_a_dL* +ls_a_dM latex-suite.txt.gz /*ls_a_dM* +ls_a_dN latex-suite.txt.gz /*ls_a_dN* +ls_a_dO latex-suite.txt.gz /*ls_a_dO* +ls_a_dP latex-suite.txt.gz /*ls_a_dP* +ls_a_dQ latex-suite.txt.gz /*ls_a_dQ* +ls_a_dR latex-suite.txt.gz /*ls_a_dR* +ls_a_dS latex-suite.txt.gz /*ls_a_dS* +ls_a_dT latex-suite.txt.gz /*ls_a_dT* +ls_a_dU latex-suite.txt.gz /*ls_a_dU* +ls_a_dV latex-suite.txt.gz /*ls_a_dV* +ls_a_dW latex-suite.txt.gz /*ls_a_dW* +ls_a_dX latex-suite.txt.gz /*ls_a_dX* +ls_a_dY latex-suite.txt.gz /*ls_a_dY* +ls_a_dZ latex-suite.txt.gz /*ls_a_dZ* +ls_a_da latex-suite.txt.gz /*ls_a_da* +ls_a_db latex-suite.txt.gz /*ls_a_db* +ls_a_dc latex-suite.txt.gz /*ls_a_dc* +ls_a_dd latex-suite.txt.gz /*ls_a_dd* +ls_a_de latex-suite.txt.gz /*ls_a_de* +ls_a_df latex-suite.txt.gz /*ls_a_df* +ls_a_dg latex-suite.txt.gz /*ls_a_dg* +ls_a_dh latex-suite.txt.gz /*ls_a_dh* +ls_a_di latex-suite.txt.gz /*ls_a_di* +ls_a_dj latex-suite.txt.gz /*ls_a_dj* +ls_a_dk latex-suite.txt.gz /*ls_a_dk* +ls_a_dl latex-suite.txt.gz /*ls_a_dl* +ls_a_dm latex-suite.txt.gz /*ls_a_dm* +ls_a_dn latex-suite.txt.gz /*ls_a_dn* +ls_a_do latex-suite.txt.gz /*ls_a_do* +ls_a_dp latex-suite.txt.gz /*ls_a_dp* +ls_a_dq latex-suite.txt.gz /*ls_a_dq* +ls_a_dr latex-suite.txt.gz /*ls_a_dr* +ls_a_ds latex-suite.txt.gz /*ls_a_ds* +ls_a_dt latex-suite.txt.gz /*ls_a_dt* +ls_a_du latex-suite.txt.gz /*ls_a_du* +ls_a_dv latex-suite.txt.gz /*ls_a_dv* +ls_a_dw latex-suite.txt.gz /*ls_a_dw* +ls_a_dx latex-suite.txt.gz /*ls_a_dx* +ls_a_dy latex-suite.txt.gz /*ls_a_dy* +ls_a_dz latex-suite.txt.gz /*ls_a_dz* +ls_a_eA latex-suite.txt.gz /*ls_a_eA* +ls_a_eB latex-suite.txt.gz /*ls_a_eB* +ls_a_eC latex-suite.txt.gz /*ls_a_eC* +ls_a_eD latex-suite.txt.gz /*ls_a_eD* +ls_a_eE latex-suite.txt.gz /*ls_a_eE* +ls_a_eF latex-suite.txt.gz /*ls_a_eF* +ls_a_eG latex-suite.txt.gz /*ls_a_eG* +ls_a_ea latex-suite.txt.gz /*ls_a_ea* +ls_a_eb latex-suite.txt.gz /*ls_a_eb* +ls_a_ec latex-suite.txt.gz /*ls_a_ec* +ls_a_ed latex-suite.txt.gz /*ls_a_ed* +ls_a_ee latex-suite.txt.gz /*ls_a_ee* +ls_a_ef latex-suite.txt.gz /*ls_a_ef* +ls_a_eg latex-suite.txt.gz /*ls_a_eg* +ls_a_eh latex-suite.txt.gz /*ls_a_eh* +ls_a_ei latex-suite.txt.gz /*ls_a_ei* +ls_a_ej latex-suite.txt.gz /*ls_a_ej* +ls_a_ek latex-suite.txt.gz /*ls_a_ek* +ls_a_el latex-suite.txt.gz /*ls_a_el* +ls_a_em latex-suite.txt.gz /*ls_a_em* +ls_a_en latex-suite.txt.gz /*ls_a_en* +ls_a_eo latex-suite.txt.gz /*ls_a_eo* +ls_a_ep latex-suite.txt.gz /*ls_a_ep* +ls_a_eq latex-suite.txt.gz /*ls_a_eq* +ls_a_er latex-suite.txt.gz /*ls_a_er* +ls_a_es latex-suite.txt.gz /*ls_a_es* +ls_a_et latex-suite.txt.gz /*ls_a_et* +ls_a_eu latex-suite.txt.gz /*ls_a_eu* +ls_a_ev latex-suite.txt.gz /*ls_a_ev* +ls_a_ew latex-suite.txt.gz /*ls_a_ew* +ls_a_ex latex-suite.txt.gz /*ls_a_ex* +ls_a_ey latex-suite.txt.gz /*ls_a_ey* +ls_a_ez latex-suite.txt.gz /*ls_a_ez* +ls_u_1 latex-suite.txt.gz /*ls_u_1* +ls_u_10 latex-suite.txt.gz /*ls_u_10* +ls_u_11 latex-suite.txt.gz /*ls_u_11* +ls_u_12 latex-suite.txt.gz /*ls_u_12* +ls_u_13 latex-suite.txt.gz /*ls_u_13* +ls_u_2 latex-suite.txt.gz /*ls_u_2* +ls_u_3 latex-suite.txt.gz /*ls_u_3* +ls_u_4 latex-suite.txt.gz /*ls_u_4* +ls_u_5 latex-suite.txt.gz /*ls_u_5* +ls_u_6 latex-suite.txt.gz /*ls_u_6* +ls_u_7 latex-suite.txt.gz /*ls_u_7* +ls_u_8 latex-suite.txt.gz /*ls_u_8* +ls_u_9 latex-suite.txt.gz /*ls_u_9* +lsq-compiling latex-suite-quickstart.txt.gz /*lsq-compiling* +lsq-conclusions latex-suite-quickstart.txt.gz /*lsq-conclusions* +lsq-debugging latex-suite-quickstart.txt.gz /*lsq-debugging* +lsq-folding latex-suite-quickstart.txt.gz /*lsq-folding* +lsq-insert-environment latex-suite-quickstart.txt.gz /*lsq-insert-environment* +lsq-inserting-reference latex-suite-quickstart.txt.gz /*lsq-inserting-reference* +lsq-inserting-template latex-suite-quickstart.txt.gz /*lsq-inserting-template* +lsq-keyboard-shortcuts latex-suite-quickstart.txt.gz /*lsq-keyboard-shortcuts* +lsq-lsq-inserting-package latex-suite-quickstart.txt.gz /*lsq-lsq-inserting-package* +lsq-quick-forward-searching latex-suite-quickstart.txt.gz /*lsq-quick-forward-searching* +lsq-quick-inverse-searching latex-suite-quickstart.txt.gz /*lsq-quick-inverse-searching* +lsq-using-tutorial latex-suite-quickstart.txt.gz /*lsq-using-tutorial* +lsq-viewing-dvi latex-suite-quickstart.txt.gz /*lsq-viewing-dvi* +macro-enabling latex-suite.txt.gz /*macro-enabling* +math, latexhelp.txt.gz /*math,* +math-misc latexhelp.txt.gz /*math-misc* +math-mode latexhelp.txt.gz /*math-mode* +math-spacing latexhelp.txt.gz /*math-spacing* +math-symbols latexhelp.txt.gz /*math-symbols* +math: latexhelp.txt.gz /*math:* +math; latexhelp.txt.gz /*math;* +matn! latexhelp.txt.gz /*matn!* +minipage latexhelp.txt.gz /*minipage* +notitlepage latexhelp.txt.gz /*notitlepage* +onecolumn latexhelp.txt.gz /*onecolumn* +oneside latexhelp.txt.gz /*oneside* +openany latexhelp.txt.gz /*openany* +openbib latexhelp.txt.gz /*openbib* +openright latexhelp.txt.gz /*openright* +overriding-macros latex-suite.txt.gz /*overriding-macros* +package-actions latex-suite.txt.gz /*package-actions* +paragraph-mode latexhelp.txt.gz /*paragraph-mode* +part-compiling latex-suite.txt.gz /*part-compiling* +pausing-imaps latex-suite.txt.gz /*pausing-imaps* +picture latexhelp.txt.gz /*picture* +picture-makebox latexhelp.txt.gz /*picture-makebox* +place-holder latex-suite.txt.gz /*place-holder* +place-holders latex-suite.txt.gz /*place-holders* +plain latexhelp.txt.gz /*plain* +pre-lengths latexhelp.txt.gz /*pre-lengths* +quotation latexhelp.txt.gz /*quotation* +quote-l latexhelp.txt.gz /*quote-l* +recommended-settings latex-suite.txt.gz /*recommended-settings* +remapping-latex-suite-keys latex-suite.txt.gz /*remapping-latex-suite-keys* +report-class latexhelp.txt.gz /*report-class* +roman latexhelp.txt.gz /*roman* +rqno latexhelp.txt.gz /*rqno* +section-mappings latex-suite.txt.gz /*section-mappings* +slides-class latexhelp.txt.gz /*slides-class* +smart-backspace latex-suite.txt.gz /*smart-backspace* +smart-keys latex-suite.txt.gz /*smart-keys* +sub-sup latexhelp.txt.gz /*sub-sup* +subscripts latexhelp.txt.gz /*subscripts* +superscripts latexhelp.txt.gz /*superscripts* +supporting-packages latex-suite.txt.gz /*supporting-packages* +tab' latexhelp.txt.gz /*tab'* +tab+ latexhelp.txt.gz /*tab+* +tab- latexhelp.txt.gz /*tab-* +tab< latexhelp.txt.gz /*tab<* +tab= latexhelp.txt.gz /*tab=* +tab> latexhelp.txt.gz /*tab>* +tab` latexhelp.txt.gz /*tab`* +taba latexhelp.txt.gz /*taba* +tabbing latexhelp.txt.gz /*tabbing* +tabular latexhelp.txt.gz /*tabular* +theorem latexhelp.txt.gz /*theorem* +titlepage latexhelp.txt.gz /*titlepage* +twocolumn latexhelp.txt.gz /*twocolumn* +twoside latexhelp.txt.gz /*twoside* +verbatim latexhelp.txt.gz /*verbatim* +verse latexhelp.txt.gz /*verse* +why-IMAP latex-suite.txt.gz /*why-IMAP* diff --git a/vim/ftplugin/bib_latexSuite.vim b/vim/ftplugin/bib_latexSuite.vim new file mode 120000 index 0000000..8a4a21a --- /dev/null +++ b/vim/ftplugin/bib_latexSuite.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/bib_latexSuite.vim \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/bibtex.vim b/vim/ftplugin/latex-suite/bibtex.vim new file mode 120000 index 0000000..b2187fc --- /dev/null +++ b/vim/ftplugin/latex-suite/bibtex.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/bibtex.vim \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/bibtools.py b/vim/ftplugin/latex-suite/bibtools.py new file mode 120000 index 0000000..5246fec --- /dev/null +++ b/vim/ftplugin/latex-suite/bibtools.py @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/bibtools.py \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/brackets.vim b/vim/ftplugin/latex-suite/brackets.vim new file mode 120000 index 0000000..db9c202 --- /dev/null +++ b/vim/ftplugin/latex-suite/brackets.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/brackets.vim \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/compiler.vim b/vim/ftplugin/latex-suite/compiler.vim new file mode 120000 index 0000000..47f717b --- /dev/null +++ b/vim/ftplugin/latex-suite/compiler.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/compiler.vim \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/custommacros.vim b/vim/ftplugin/latex-suite/custommacros.vim new file mode 120000 index 0000000..a92ac9a --- /dev/null +++ b/vim/ftplugin/latex-suite/custommacros.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/custommacros.vim \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/diacritics.vim b/vim/ftplugin/latex-suite/diacritics.vim new file mode 120000 index 0000000..a9ebe2a --- /dev/null +++ b/vim/ftplugin/latex-suite/diacritics.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/diacritics.vim \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/dictionaries/SIunits b/vim/ftplugin/latex-suite/dictionaries/SIunits new file mode 120000 index 0000000..8bd69c4 --- /dev/null +++ b/vim/ftplugin/latex-suite/dictionaries/SIunits @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/dictionaries/SIunits \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/dictionaries/dictionary b/vim/ftplugin/latex-suite/dictionaries/dictionary new file mode 120000 index 0000000..7e157e2 --- /dev/null +++ b/vim/ftplugin/latex-suite/dictionaries/dictionary @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/dictionaries/dictionary \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/elementmacros.vim b/vim/ftplugin/latex-suite/elementmacros.vim new file mode 120000 index 0000000..d803bec --- /dev/null +++ b/vim/ftplugin/latex-suite/elementmacros.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/elementmacros.vim \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/envmacros.vim b/vim/ftplugin/latex-suite/envmacros.vim new file mode 120000 index 0000000..f3de31c --- /dev/null +++ b/vim/ftplugin/latex-suite/envmacros.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/envmacros.vim \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/folding.vim b/vim/ftplugin/latex-suite/folding.vim new file mode 120000 index 0000000..6ea91bf --- /dev/null +++ b/vim/ftplugin/latex-suite/folding.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/folding.vim \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/macros/example b/vim/ftplugin/latex-suite/macros/example new file mode 120000 index 0000000..182184b --- /dev/null +++ b/vim/ftplugin/latex-suite/macros/example @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/macros/example \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/main.vim b/vim/ftplugin/latex-suite/main.vim new file mode 120000 index 0000000..7756d01 --- /dev/null +++ b/vim/ftplugin/latex-suite/main.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/main.vim \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/mathmacros-utf.vim b/vim/ftplugin/latex-suite/mathmacros-utf.vim new file mode 120000 index 0000000..eb27622 --- /dev/null +++ b/vim/ftplugin/latex-suite/mathmacros-utf.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/mathmacros-utf.vim \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/mathmacros.vim b/vim/ftplugin/latex-suite/mathmacros.vim new file mode 120000 index 0000000..69ed4ec --- /dev/null +++ b/vim/ftplugin/latex-suite/mathmacros.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/mathmacros.vim \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/multicompile.vim b/vim/ftplugin/latex-suite/multicompile.vim new file mode 120000 index 0000000..9c862b9 --- /dev/null +++ b/vim/ftplugin/latex-suite/multicompile.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/multicompile.vim \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/outline.py b/vim/ftplugin/latex-suite/outline.py new file mode 120000 index 0000000..20f9372 --- /dev/null +++ b/vim/ftplugin/latex-suite/outline.py @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/outline.py \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages.vim b/vim/ftplugin/latex-suite/packages.vim new file mode 120000 index 0000000..7692662 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages.vim \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/SIunits b/vim/ftplugin/latex-suite/packages/SIunits new file mode 120000 index 0000000..e91d5cd --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/SIunits @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/SIunits \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/accents b/vim/ftplugin/latex-suite/packages/accents new file mode 120000 index 0000000..95d9216 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/accents @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/accents \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/acromake b/vim/ftplugin/latex-suite/packages/acromake new file mode 120000 index 0000000..03af1df --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/acromake @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/acromake \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/afterpage b/vim/ftplugin/latex-suite/packages/afterpage new file mode 120000 index 0000000..2d5bd1d --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/afterpage @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/afterpage \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/alltt b/vim/ftplugin/latex-suite/packages/alltt new file mode 120000 index 0000000..4c99323 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/alltt @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/alltt \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/amsmath b/vim/ftplugin/latex-suite/packages/amsmath new file mode 120000 index 0000000..4e80d7f --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/amsmath @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/amsmath \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/amsthm b/vim/ftplugin/latex-suite/packages/amsthm new file mode 120000 index 0000000..6a50fa1 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/amsthm @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/amsthm \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/amsxtra b/vim/ftplugin/latex-suite/packages/amsxtra new file mode 120000 index 0000000..c659cb4 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/amsxtra @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/amsxtra \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/arabic b/vim/ftplugin/latex-suite/packages/arabic new file mode 120000 index 0000000..82e41b5 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/arabic @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/arabic \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/array b/vim/ftplugin/latex-suite/packages/array new file mode 120000 index 0000000..88cdc82 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/array @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/array \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/babel b/vim/ftplugin/latex-suite/packages/babel new file mode 120000 index 0000000..6c48b5d --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/babel @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/babel \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/bar b/vim/ftplugin/latex-suite/packages/bar new file mode 120000 index 0000000..3e7bc71 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/bar @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/bar \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/biblatex b/vim/ftplugin/latex-suite/packages/biblatex new file mode 120000 index 0000000..9033a18 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/biblatex @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/biblatex \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/bm b/vim/ftplugin/latex-suite/packages/bm new file mode 120000 index 0000000..8c59b19 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/bm @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/bm \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/bophook b/vim/ftplugin/latex-suite/packages/bophook new file mode 120000 index 0000000..232241d --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/bophook @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/bophook \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/boxedminipage b/vim/ftplugin/latex-suite/packages/boxedminipage new file mode 120000 index 0000000..3b3ec81 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/boxedminipage @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/boxedminipage \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/caption2 b/vim/ftplugin/latex-suite/packages/caption2 new file mode 120000 index 0000000..21652a1 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/caption2 @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/caption2 \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/cases b/vim/ftplugin/latex-suite/packages/cases new file mode 120000 index 0000000..1128f0d --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/cases @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/cases \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/ccaption b/vim/ftplugin/latex-suite/packages/ccaption new file mode 120000 index 0000000..2f67d5b --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/ccaption @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/ccaption \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/changebar b/vim/ftplugin/latex-suite/packages/changebar new file mode 120000 index 0000000..435e625 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/changebar @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/changebar \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/chapterbib b/vim/ftplugin/latex-suite/packages/chapterbib new file mode 120000 index 0000000..b224006 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/chapterbib @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/chapterbib \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/cite b/vim/ftplugin/latex-suite/packages/cite new file mode 120000 index 0000000..0d1eee7 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/cite @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/cite \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/color b/vim/ftplugin/latex-suite/packages/color new file mode 120000 index 0000000..1babf39 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/color @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/color \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/comma b/vim/ftplugin/latex-suite/packages/comma new file mode 120000 index 0000000..ee9cc83 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/comma @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/comma \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/csquotes b/vim/ftplugin/latex-suite/packages/csquotes new file mode 120000 index 0000000..1eea388 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/csquotes @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/csquotes \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/deleq b/vim/ftplugin/latex-suite/packages/deleq new file mode 120000 index 0000000..0cb7f16 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/deleq @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/deleq \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/drftcite b/vim/ftplugin/latex-suite/packages/drftcite new file mode 120000 index 0000000..7bcd15e --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/drftcite @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/drftcite \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/dropping b/vim/ftplugin/latex-suite/packages/dropping new file mode 120000 index 0000000..001c600 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/dropping @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/dropping \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/enumerate b/vim/ftplugin/latex-suite/packages/enumerate new file mode 120000 index 0000000..59c1cbe --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/enumerate @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/enumerate \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/eqlist b/vim/ftplugin/latex-suite/packages/eqlist new file mode 120000 index 0000000..b2b3c7d --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/eqlist @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/eqlist \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/eqparbox b/vim/ftplugin/latex-suite/packages/eqparbox new file mode 120000 index 0000000..9de66ef --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/eqparbox @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/eqparbox \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/everyshi b/vim/ftplugin/latex-suite/packages/everyshi new file mode 120000 index 0000000..6c746a3 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/everyshi @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/everyshi \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/exmpl b/vim/ftplugin/latex-suite/packages/exmpl new file mode 120000 index 0000000..6d62c72 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/exmpl @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/exmpl \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/fixme b/vim/ftplugin/latex-suite/packages/fixme new file mode 120000 index 0000000..9b7fc0b --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/fixme @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/fixme \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/flafter b/vim/ftplugin/latex-suite/packages/flafter new file mode 120000 index 0000000..f0ca5d3 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/flafter @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/flafter \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/float b/vim/ftplugin/latex-suite/packages/float new file mode 120000 index 0000000..88947fc --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/float @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/float \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/floatflt b/vim/ftplugin/latex-suite/packages/floatflt new file mode 120000 index 0000000..54c8545 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/floatflt @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/floatflt \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/fn2end b/vim/ftplugin/latex-suite/packages/fn2end new file mode 120000 index 0000000..0409cf5 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/fn2end @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/fn2end \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/footmisc b/vim/ftplugin/latex-suite/packages/footmisc new file mode 120000 index 0000000..e0f7040 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/footmisc @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/footmisc \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/geometry b/vim/ftplugin/latex-suite/packages/geometry new file mode 120000 index 0000000..9eae177 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/geometry @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/geometry \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/german b/vim/ftplugin/latex-suite/packages/german new file mode 120000 index 0000000..7255a9d --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/german @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/german \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/graphicx b/vim/ftplugin/latex-suite/packages/graphicx new file mode 120000 index 0000000..1a9509e --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/graphicx @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/graphicx \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/graphpap b/vim/ftplugin/latex-suite/packages/graphpap new file mode 120000 index 0000000..d2ea7da --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/graphpap @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/graphpap \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/harpoon b/vim/ftplugin/latex-suite/packages/harpoon new file mode 120000 index 0000000..b2de7e5 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/harpoon @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/harpoon \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/hhline b/vim/ftplugin/latex-suite/packages/hhline new file mode 120000 index 0000000..e184977 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/hhline @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/hhline \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/histogram b/vim/ftplugin/latex-suite/packages/histogram new file mode 120000 index 0000000..5075eef --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/histogram @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/histogram \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/hyperref b/vim/ftplugin/latex-suite/packages/hyperref new file mode 120000 index 0000000..4f15513 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/hyperref @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/hyperref \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/ifthen b/vim/ftplugin/latex-suite/packages/ifthen new file mode 120000 index 0000000..78ab498 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/ifthen @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/ifthen \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/inputenc b/vim/ftplugin/latex-suite/packages/inputenc new file mode 120000 index 0000000..06df3af --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/inputenc @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/inputenc \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/letterspace b/vim/ftplugin/latex-suite/packages/letterspace new file mode 120000 index 0000000..9b1a052 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/letterspace @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/letterspace \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/lineno b/vim/ftplugin/latex-suite/packages/lineno new file mode 120000 index 0000000..8ff57e8 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/lineno @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/lineno \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/longtable b/vim/ftplugin/latex-suite/packages/longtable new file mode 120000 index 0000000..449046c --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/longtable @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/longtable \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/lscape b/vim/ftplugin/latex-suite/packages/lscape new file mode 120000 index 0000000..338090c --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/lscape @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/lscape \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/manyfoot b/vim/ftplugin/latex-suite/packages/manyfoot new file mode 120000 index 0000000..447a81d --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/manyfoot @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/manyfoot \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/moreverb b/vim/ftplugin/latex-suite/packages/moreverb new file mode 120000 index 0000000..f53e42a --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/moreverb @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/moreverb \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/multibox b/vim/ftplugin/latex-suite/packages/multibox new file mode 120000 index 0000000..13eab07 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/multibox @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/multibox \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/multicol b/vim/ftplugin/latex-suite/packages/multicol new file mode 120000 index 0000000..dffcd66 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/multicol @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/multicol \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/newalg b/vim/ftplugin/latex-suite/packages/newalg new file mode 120000 index 0000000..eff77ed --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/newalg @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/newalg \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/ngerman b/vim/ftplugin/latex-suite/packages/ngerman new file mode 120000 index 0000000..45ee1ed --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/ngerman @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/ngerman \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/numprint b/vim/ftplugin/latex-suite/packages/numprint new file mode 120000 index 0000000..39b222f --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/numprint @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/numprint \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/oldstyle b/vim/ftplugin/latex-suite/packages/oldstyle new file mode 120000 index 0000000..adee066 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/oldstyle @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/oldstyle \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/outliner b/vim/ftplugin/latex-suite/packages/outliner new file mode 120000 index 0000000..6091b28 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/outliner @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/outliner \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/overcite b/vim/ftplugin/latex-suite/packages/overcite new file mode 120000 index 0000000..6598d04 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/overcite @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/overcite \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/pagenote b/vim/ftplugin/latex-suite/packages/pagenote new file mode 120000 index 0000000..e1650d3 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/pagenote @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/pagenote \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/parallel b/vim/ftplugin/latex-suite/packages/parallel new file mode 120000 index 0000000..311e7cd --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/parallel @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/parallel \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/plain b/vim/ftplugin/latex-suite/packages/plain new file mode 120000 index 0000000..4184d23 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/plain @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/plain \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/plates b/vim/ftplugin/latex-suite/packages/plates new file mode 120000 index 0000000..e8fd326 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/plates @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/plates \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/polski b/vim/ftplugin/latex-suite/packages/polski new file mode 120000 index 0000000..448a8f1 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/polski @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/polski \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/psgo b/vim/ftplugin/latex-suite/packages/psgo new file mode 120000 index 0000000..2cede17 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/psgo @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/psgo \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/schedule b/vim/ftplugin/latex-suite/packages/schedule new file mode 120000 index 0000000..61c1db1 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/schedule @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/schedule \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/textfit b/vim/ftplugin/latex-suite/packages/textfit new file mode 120000 index 0000000..1d12972 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/textfit @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/textfit \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/times b/vim/ftplugin/latex-suite/packages/times new file mode 120000 index 0000000..4cbed6c --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/times @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/times \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/tipa b/vim/ftplugin/latex-suite/packages/tipa new file mode 120000 index 0000000..8bf48c9 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/tipa @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/tipa \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/ulem b/vim/ftplugin/latex-suite/packages/ulem new file mode 120000 index 0000000..4c343de --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/ulem @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/ulem \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/url b/vim/ftplugin/latex-suite/packages/url new file mode 120000 index 0000000..f4b73c1 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/url @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/url \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/verbatim b/vim/ftplugin/latex-suite/packages/verbatim new file mode 120000 index 0000000..a1abb9e --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/verbatim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/verbatim \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/packages/version b/vim/ftplugin/latex-suite/packages/version new file mode 120000 index 0000000..8c53044 --- /dev/null +++ b/vim/ftplugin/latex-suite/packages/version @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/packages/version \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/projecttemplate.vim b/vim/ftplugin/latex-suite/projecttemplate.vim new file mode 120000 index 0000000..fdb6b82 --- /dev/null +++ b/vim/ftplugin/latex-suite/projecttemplate.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/projecttemplate.vim \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/pytools.py b/vim/ftplugin/latex-suite/pytools.py new file mode 120000 index 0000000..5c3d8d8 --- /dev/null +++ b/vim/ftplugin/latex-suite/pytools.py @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/pytools.py \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/smartspace.vim b/vim/ftplugin/latex-suite/smartspace.vim new file mode 120000 index 0000000..a772f3e --- /dev/null +++ b/vim/ftplugin/latex-suite/smartspace.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/smartspace.vim \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/templates.vim b/vim/ftplugin/latex-suite/templates.vim new file mode 120000 index 0000000..8dcadde --- /dev/null +++ b/vim/ftplugin/latex-suite/templates.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/templates.vim \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/templates/IEEEtran.tex b/vim/ftplugin/latex-suite/templates/IEEEtran.tex new file mode 120000 index 0000000..459ad65 --- /dev/null +++ b/vim/ftplugin/latex-suite/templates/IEEEtran.tex @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/templates/IEEEtran.tex \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/templates/article.tex b/vim/ftplugin/latex-suite/templates/article.tex new file mode 120000 index 0000000..adc3398 --- /dev/null +++ b/vim/ftplugin/latex-suite/templates/article.tex @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/templates/article.tex \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/templates/report.tex b/vim/ftplugin/latex-suite/templates/report.tex new file mode 120000 index 0000000..980639e --- /dev/null +++ b/vim/ftplugin/latex-suite/templates/report.tex @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/templates/report.tex \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/templates/report_two_column.tex b/vim/ftplugin/latex-suite/templates/report_two_column.tex new file mode 120000 index 0000000..e95ddfb --- /dev/null +++ b/vim/ftplugin/latex-suite/templates/report_two_column.tex @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/templates/report_two_column.tex \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/texmenuconf.vim b/vim/ftplugin/latex-suite/texmenuconf.vim new file mode 120000 index 0000000..337c158 --- /dev/null +++ b/vim/ftplugin/latex-suite/texmenuconf.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/texmenuconf.vim \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/texproject.vim b/vim/ftplugin/latex-suite/texproject.vim new file mode 120000 index 0000000..9254715 --- /dev/null +++ b/vim/ftplugin/latex-suite/texproject.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/texproject.vim \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/texrc b/vim/ftplugin/latex-suite/texrc new file mode 120000 index 0000000..ebf927b --- /dev/null +++ b/vim/ftplugin/latex-suite/texrc @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/texrc \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/texviewer.vim b/vim/ftplugin/latex-suite/texviewer.vim new file mode 120000 index 0000000..e7c2963 --- /dev/null +++ b/vim/ftplugin/latex-suite/texviewer.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/texviewer.vim \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/version.vim b/vim/ftplugin/latex-suite/version.vim new file mode 120000 index 0000000..53adfe7 --- /dev/null +++ b/vim/ftplugin/latex-suite/version.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/version.vim \ No newline at end of file diff --git a/vim/ftplugin/latex-suite/wizardfuncs.vim b/vim/ftplugin/latex-suite/wizardfuncs.vim new file mode 120000 index 0000000..f32b74a --- /dev/null +++ b/vim/ftplugin/latex-suite/wizardfuncs.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/latex-suite/wizardfuncs.vim \ No newline at end of file diff --git a/vim/ftplugin/tex_latexSuite.vim b/vim/ftplugin/tex_latexSuite.vim new file mode 120000 index 0000000..e0a3109 --- /dev/null +++ b/vim/ftplugin/tex_latexSuite.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/ftplugin/tex_latexSuite.vim \ No newline at end of file diff --git a/vim/indent/tex.vim b/vim/indent/tex.vim new file mode 120000 index 0000000..551e3a9 --- /dev/null +++ b/vim/indent/tex.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/indent/tex.vim \ No newline at end of file diff --git a/vim/plugin/SyntaxFolds.vim b/vim/plugin/SyntaxFolds.vim new file mode 120000 index 0000000..6368bba --- /dev/null +++ b/vim/plugin/SyntaxFolds.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/plugin/SyntaxFolds.vim \ No newline at end of file diff --git a/vim/plugin/filebrowser.vim b/vim/plugin/filebrowser.vim new file mode 120000 index 0000000..de8cea6 --- /dev/null +++ b/vim/plugin/filebrowser.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/plugin/filebrowser.vim \ No newline at end of file diff --git a/vim/plugin/imaps.vim b/vim/plugin/imaps.vim new file mode 120000 index 0000000..078bfb9 --- /dev/null +++ b/vim/plugin/imaps.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/plugin/imaps.vim \ No newline at end of file diff --git a/vim/plugin/libList.vim b/vim/plugin/libList.vim new file mode 120000 index 0000000..b9192da --- /dev/null +++ b/vim/plugin/libList.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/plugin/libList.vim \ No newline at end of file diff --git a/vim/plugin/remoteOpen.vim b/vim/plugin/remoteOpen.vim new file mode 120000 index 0000000..3a06168 --- /dev/null +++ b/vim/plugin/remoteOpen.vim @@ -0,0 +1 @@ +/usr/share/vim/addons/plugin/remoteOpen.vim \ No newline at end of file diff --git a/zshrc b/zshrc new file mode 100644 index 0000000..21e973f --- /dev/null +++ b/zshrc @@ -0,0 +1,119 @@ +# Path to your oh-my-zsh installation. +export ZSH=/home/mmk2410/.oh-my-zsh + +# Set name of the theme to load. +# Look in ~/.oh-my-zsh/themes/ +# Optionally, if you set this to "random", it'll load a random theme each +# time that oh-my-zsh is loaded. +ZSH_THEME="af-magic" + +# Uncomment the following line to use case-sensitive completion. +# CASE_SENSITIVE="true" + +# Uncomment the following line to use hyphen-insensitive completion. Case +# sensitive completion must be off. _ and - will be interchangeable. +# HYPHEN_INSENSITIVE="true" + +# Uncomment the following line to disable bi-weekly auto-update checks. +# DISABLE_AUTO_UPDATE="true" + +# Uncomment the following line to change how often to auto-update (in days). +# export UPDATE_ZSH_DAYS=13 + +# Uncomment the following line to disable colors in ls. +# DISABLE_LS_COLORS="true" + +# Uncomment the following line to disable auto-setting terminal title. +# DISABLE_AUTO_TITLE="true" + +# Uncomment the following line to enable command auto-correction. +ENABLE_CORRECTION="true" + +# Uncomment the following line to display red dots whilst waiting for completion. +COMPLETION_WAITING_DOTS="true" + +# Uncomment the following line if you want to disable marking untracked files +# under VCS as dirty. This makes repository status check for large repositories +# much, much faster. +DISABLE_UNTRACKED_FILES_DIRTY="true" + +# Uncomment the following line if you want to change the command execution time +# stamp shown in the history command output. +# The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd" +HIST_STAMPS="dd/mm/yyyy" + +# Would you like to use another custom folder than $ZSH/custom? +# ZSH_CUSTOM=/path/to/new-custom-folder + +# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*) +# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ +# Example format: plugins=(rails git textmate ruby lighthouse) +# Add wisely, as too many plugins slow down shell startup. +plugins=(git adb battery bower coffee command-not-found debian gitignore github git-prompt gnu-utils node npm python terminator web-search) + +# User configuration + +export PATH="/home/mmk2410/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games:/home/mmk/.gem/ruby/2.2.0/bin:/usr/local/texlive/2015/bin/x86_64-linux" +# export MANPATH="/usr/local/man:$MANPATH" + +source $ZSH/oh-my-zsh.sh + +# You may need to manually set your language environment +# export LANG=en_US.UTF-8 + +# Preferred editor for local and remote sessions +# if [[ -n $SSH_CONNECTION ]]; then +export EDITOR='vim' +# else +# export EDITOR='mvim' +# fi + +# Compilation flags +export ARCHFLAGS="-arch x86_64" + +# ssh +# export SSH_KEY_PATH="~/.ssh/dsa_id" + +# Set personal aliases, overriding those provided by oh-my-zsh libs, +# plugins, and themes. Aliases can be placed here, though oh-my-zsh +# users are encouraged to define aliases within the ZSH_CUSTOM folder. +# For a full list of active aliases, run `alias`. +# +# Example aliases +# alias zshconfig="mate ~/.zshrc" +# alias ohmyzsh="mate ~/.oh-my-zsh" +alias zshrc="$EDITOR ~/.zshrc" +eval "$(thefuck --alias)" +alias l="ls" +alias diff='colordiff' +alias grep='grep --color=auto' +alias more='less' +alias df='df -h' +alias du='du -c -h' +alias mkdir='mkdir -p -v' +alias nano='nano -w' +alias ping='ping -c 3' +alias pingtest='ping -c 3 marcel-kapfer.de' +alias dmesg='dmesg -HL' +alias da='date "+%A, %B %d, %Y [%T]"' +alias du1='du --max-depth=1' +alias hist='history | grep' # requires an argument +alias openports='ss --all --numeric --processes --ipv4 --ipv6' +alias pgg='ps -Af | grep' # requires an argument +alias rm=' timeout 3 rm -Iv --one-file-system' +alias ln='ln -i' +alias chown='chown --preserve-root' +alias chmod='chmod --preserve-root' +alias chgrp='chgrp --preserve-root' +alias cls=' echo -ne "\033c"' +alias ps='ps aux k%cpu' +alias new='touch' +alias re='reboot' +alias off='poweroff' +alias vol='alsamixer' +alias q=' exit' +alias Q=' exit' +alias x=' exit' +alias cd..='cd ..' +alias mmk2410='cat /home/mmk/.mmk2410' +mmk2410