Add several filetype settings

This commit is contained in:
Alexander Gehrke 2021-05-20 18:01:29 +02:00
parent cf65891d7b
commit 09764eb3eb
9 changed files with 161 additions and 0 deletions

10
after/ftplugin/css.vim Normal file
View file

@ -0,0 +1,10 @@
function GetColor()
let l:output = system('zenity --color-selection')
return substitute(l:output, '[\r\n]*$', '', '')
endfunction
nnoremap <leader>c "=GetColor()<cr>p
inoremap <C-\>c <C-r>=GetColor()<cr>

View file

@ -0,0 +1,4 @@
set tabstop=4
set expandtab
set softtabstop=4
set shiftwidth=4

View file

@ -0,0 +1 @@
set ts=4 sw=4 et