aboutsummaryrefslogtreecommitdiff
path: root/files/vim/ftplugin/typescript/typescript.vim
blob: d80dde4f07eb3547bfdab7cc47a1e105a2c98e7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
" ~/.vim/ftplugin/typescript/typescript.vim
" TypeScript-specific vim configuration

" ALE
"let b:ale_linters = ['eslint']

" Tabs are expanded to 4 spaces
setlocal tabstop=2 shiftwidth=2 expandtab
" Show existing tabs (they can be deleted with :retab)
setlocal list

" Column marker: 110 characters
call matchadd('ColorColumn', '\%111v', 100)
setlocal textwidth=110

" Mappings
nnoremap <buffer> <leader>C :sp ~/.vim/ftplugin/typescript/typescript.vim<CR>

nnoremap <buffer> gd :ALEGoToDefinition<CR>
nnoremap <buffer> <Space>h :ALEHover<CR>
nnoremap <buffer> <Space>r :ALERename<CR>
nnoremap <buffer> <Space>fr :ALEFindReferences<CR>

inoremap <buffer> <leader>if if (<+++>) {<CR><++><CR>} <++><Esc>?<+++><CR>cf>
inoremap <buffer> <leader>else else {<CR><+++><CR>}<CR><++><Esc>?<+++><CR>cf>