use editorconfig via plugin instead of apt

This commit is contained in:
2025-05-22 16:08:28 -04:00
parent 7b1b3aeb3d
commit 0e88a55e56
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ read -p 'Install prerequisites (git, vim, curl, and jq)? [y/N]: ' response
case "${response}" in
[Yy]* )
# before we can begin, we need what should have already been installed
sudo apt install git vim vim-editorconfig curl jq -y
sudo apt install git vim curl jq -y
;;
* )
echo 'Skipping'
+3
View File
@@ -41,6 +41,9 @@ map <esc>OF <end>
call plug#begin()
" enable editorconfig support
Plug 'editorconfig/editorconfig-vim'
" highlight Caddyfile
Plug 'isobit/vim-caddyfile'