File tree Expand file tree Collapse file tree 4 files changed +28
-2
lines changed
Expand file tree Collapse file tree 4 files changed +28
-2
lines changed Original file line number Diff line number Diff line change 1+ set expandtab
2+ set shiftwidth = 2
3+ set softtabstop = 2
4+ set tabstop = 2
5+
6+ set foldmethod = manual
7+ " set nofoldenable
8+ set foldlevelstart = 99
9+ " help with slowing of typescript syntax highlighting
10+ setlocal regexpengine = 2
11+
12+ " ?: backwards search to z then xi
13+ " CTRL+] to expand without putting the space in
14+ iabbrev cld@ console.dir (z, {depth: null});<Esc> ?z< CR>xi
15+ iabbrev cll@ console.log (z);<Esc> ?z< CR>xi
Original file line number Diff line number Diff line change 1+ set expandtab
2+ set shiftwidth = 2
3+ set softtabstop = 2
4+ set tabstop = 2
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ OPTIONS=hilite_pet
55OPTIONS=lit_corridor
66OPTIONS=DECgraphics
77OPTIONS=showrace
8- OPTIONS=autopickup,pickup_types:$?!/=
8+ OPTIONS=autopickup,pickup_types:$?!/="+
99OPTIONS=disclose:+i+a+g+c+v
1010OPTIONS=showexp,showscore,time
1111OPTIONS=boulder:0
Original file line number Diff line number Diff line change @@ -12,15 +12,21 @@ let mapleader=" "
1212map <silent> <F2> :Lexplore<CR>
1313map <silent> <F3> :set number! relativenumber!<CR>
1414map <silent> <F4> :syntax sync minlines=50<CR>
15- imap cll console.log()<Left>
1615nnoremap <silent> <C-d> <C-d> zz<CR>
1716nnoremap <silent> <C-u> <C-u> zz<CR>
1817nnoremap <leader> tn :tabnew<CR>
1918nnoremap <leader> tc :tabclose<CR>
2019
20+ " iabbrev in after/ftplugin (abbreviations)
21+
2122set autoindent
2223filetype plugin indent on
2324
25+ " regexpengine to automatic selection
26+ " after/ftplugin can override to help with syntax highlighting
27+ " setlocal regexpengine=2
28+ set regexpengine = 0
29+
2430syntax enable
2531
2632set laststatus = 2 " always show the status line
@@ -70,3 +76,4 @@ nnoremap <leader>lh :LspHover<CR>
7076nnoremap <leader> hl :LspHighlight<CR>
7177nnoremap <leader> hL :LspHighlightClear<CR>
7278nnoremap <leader> lf :LspFormat<CR>
79+ nnoremap <leader> lF :LspFold<CR>
You can’t perform that action at this time.
0 commit comments