Skip to content
Snippets Groups Projects
Commit 4db3aef3 authored by mtrame's avatar mtrame
Browse files

updated 2-22

parent d3510ed3
Branches master
No related tags found
No related merge requests found
doc/tags
misc/notes/index.pickle
misc/notes/recent.txt
misc/notes/tags.txt
misc/notes/user/
auto-pairs @ 39f06b87
Subproject commit 39f06b873a8449af8ff6a3eee716d3da14d63a76
vim-javascript @ b6c8c841
Subproject commit b6c8c8419240bdd29b5eb51a47d488fd390deed5
vim-latex @ 00f34403
Subproject commit 00f344033d5ab22c2cb48f5a01954f0a2aa10881
vim-latex-live-preview @ 855c3091
Subproject commit 855c30915547c7e9c19b7e6efb528730c071d2e8
vim-misc @ 3e6b8fb6
Subproject commit 3e6b8fb6f03f13434543ce1f5d24f6a5d3f34f0b
vim-notes @ e465a0a9
Subproject commit e465a0a987dbacdf7291688215b8545f8584d409
vim-xmark @ 7e27f6fc
Subproject commit 7e27f6fce7a249f0a4820fbc943191bbb7a1af10
vimwiki @ b90e6f2e
Subproject commit b90e6f2e3343277faca65156d733f725f76f1e53
vim-gitgutter @ af20a9fc
Subproject commit af20a9fcfff9b5277fc8482e802c4dec291ea589
......@@ -16,7 +16,7 @@ filetype indent plugin on
" Enable syntax highlighting
syntax on
set noswapfile
"------------------------------------------------------------
" Must have options {{{1
"
......@@ -57,6 +57,7 @@ set hlsearch
" script, <http://www.vim.org/scripts/script.php?script_id=1876>.
" set nomodeline
" set cc=80
"------------------------------------------------------------
" Usability options {{{1
......@@ -110,6 +111,7 @@ set cmdheight=2
" Display line numbers on the left
set number
set relativenumber
" Quickly time out on keycodes, but never time out on mappings
set notimeout ttimeout ttimeoutlen=200
......@@ -117,7 +119,6 @@ set notimeout ttimeout ttimeoutlen=200
" Use <F11> to toggle between 'paste' and 'nopaste'
set pastetoggle=<F11>
set relativenumber
"------------------------------------------------------------
" Indentation options {{{1
......@@ -198,8 +199,8 @@ Plug '~/my-prototype-plugin'
" Initialize plugin system
" Start up NERDTree when no file is specified
autocmd StdinReadPre * let s:std_in=1
autocmd VimEnter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif
" autocmd StdinReadPre * let s:std_in=1
" autocmd VimEnter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif
" html completion, fuck 485 rn (9/15/19)
autocmd FileType html set omnifunc=htmlcomplete#CompleteTags
......@@ -213,9 +214,15 @@ autocmd FileType html set omnifunc=htmlcomplete#CompleteTags
"let g:syntastic_auto_loc_list = 1
"let g:syntastic_check_on_open = 1
"let g:syntastic_check_on_wq = 0
let NERDTreeRemoveFileCmd = 1
let NERDTreeRemoveDirCmd = 1
"folding settings
set foldmethod=indent "fold based on indent
set foldnestmax=10 "deepest fold is 10 levels
set nofoldenable "dont fold by default
set foldlevel=1 "this is just what i use
"\begin{} \end{} autocomplete
noremap \b cw\begin{<C-R>"}<CR>\end{<C-R>"}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment