This commit is contained in:
ManjaroOne666 2018-10-13 07:50:17 +01:00
commit dc57b96ccf
5 changed files with 154 additions and 32 deletions

11
vimrc
View file

@ -1022,6 +1022,7 @@ inoremap {:w<cr> :w<cr>
inoremap {{ {}<left>
inoremap {<CR> {<CR>}<C-o>O
inoremap {; {<CR>};<C-o>O
inoremap {, {<CR>},<C-o>O
inoremap {{{ {{}}<Left><Left>
inoremap (( ()<Left>
@ -1054,8 +1055,6 @@ iabbrev functin function
iabbrev positin position
" css
iabbrev w100; width: 100%;
iabbrev h100; height: 100%;
iabbrev pabs; position: absolute;
iabbrev pfix; position: fixed;
iabbrev prel; position: relative;
@ -1063,20 +1062,12 @@ iabbrev fdr; flex-direction: row;
iabbrev fdc; flex-direction: column;
iabbrev jcc; justify-content: center;
iabbrev aic; align-items: center;
iabbrev m0; margin: 0;
iabbrev t0; top: 0;
iabbrev b0; bottom: 0;
iabbrev l0; left: 0;
iabbrev r0; right: 0;
iabbrev t100; top: 100%;
iabbrev b100; bottom: 100%;
iabbrev l100; left: 100%;
iabbrev r100; right: 100%;
iabbrev w: width:;<left>
iabbrev h: height:;<left>
iabbrev ct'' content-type: '';
iabbrev bgc: background-color:;<left>
"}}}