From 663c9fd8cb8cf9243b8119e71430bf7f3113670f Mon Sep 17 00:00:00 2001 From: KevinMidboe Date: Fri, 28 Jun 2019 16:33:58 +0200 Subject: [PATCH] Vim plugin for vue syntax highlighting --- .vimrc | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.vimrc b/.vimrc index e8cea24..429f107 100644 --- a/.vimrc +++ b/.vimrc @@ -14,6 +14,8 @@ Plugin 'VundleVim/Vundle.vim' Plugin 'git@github.com:ajh17/VimCompletesMe.git' Plugin 'git@github.com:Valloric/YouCompleteMe.git' Plugin 'git@github.com:moll/vim-node.git' +" Vue syntax highlighting - https://github.com/posva/vim-vue +Plugin 'posva/vim-vue' " autocmd FileType markdown let b:dispatch = 'octodown --live-reload %' @@ -35,11 +37,12 @@ filetype plugin indent on " required " see :h vundle for more details or wiki for FAQ " Put your non-Plugin stuff after this line -" Set tab to 4 spaces -set tabstop=4 -set shiftwidth=4 -set softtabstop=4 +" Set tab to 2 spaces +set tabstop=2 +set shiftwidth=2 +set softtabstop=2 set expandtab " Set line number set number +set splitbelow