vim: easyalign
This commit is contained in:
parent
4f3d81cb81
commit
6f942f2d65
1 changed files with 4 additions and 1 deletions
5
.vimrc
5
.vimrc
|
@ -16,6 +16,8 @@ Plugin 'itspriddle/vim-shellcheck'
|
||||||
Plugin 'tpope/vim-fugitive'
|
Plugin 'tpope/vim-fugitive'
|
||||||
" statusline
|
" statusline
|
||||||
Plugin 'itchyny/lightline.vim'
|
Plugin 'itchyny/lightline.vim'
|
||||||
|
" ausrichten von text
|
||||||
|
Plugin 'junegunn/vim-easy-align'
|
||||||
" buffer in tabline
|
" buffer in tabline
|
||||||
Plugin 'ap/vim-buftabline'
|
Plugin 'ap/vim-buftabline'
|
||||||
" start screen
|
" start screen
|
||||||
|
@ -172,7 +174,8 @@ nnoremap <Leader>m :MarkdownPreviewToggle<CR>
|
||||||
" speichere Datei als root mit :w!!
|
" speichere Datei als root mit :w!!
|
||||||
" https://unix.stackexchange.com/questions/71109/how-can-i-exit-from-read-only-mode-in-vim
|
" https://unix.stackexchange.com/questions/71109/how-can-i-exit-from-read-only-mode-in-vim
|
||||||
cmap w!! w !sudo tee % > /dev/null
|
cmap w!! w !sudo tee % > /dev/null
|
||||||
|
" Start interactive EasyAlign in visual mode (e.g. vipga)
|
||||||
|
xmap ga <Plug>(EasyAlign)
|
||||||
|
|
||||||
" ### Abbreviations
|
" ### Abbreviations
|
||||||
iabbrev ncicht nicht
|
iabbrev ncicht nicht
|
||||||
|
|
Loading…
Reference in a new issue