From f8eaf3baab26c016a72095c44d5e4b441f179dbc Mon Sep 17 00:00:00 2001 From: Szwendacz99 Date: Thu, 6 Oct 2022 16:01:22 +0200 Subject: [PATCH] Add saltstack and jinja2 syntax, relative relative line number --- init.vim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/init.vim b/init.vim index 1791f00..0f10455 100644 --- a/init.vim +++ b/init.vim @@ -11,6 +11,8 @@ Plug 'preservim/nerdcommenter' Plug 'mhinz/vim-startify' Plug 'rmagatti/auto-session' Plug 'tpope/vim-fugitive' +Plug 'Glench/Vim-Jinja2-Syntax' +Plug 'vmware-archive/salt-vim' "Fuzzy search by Telescope and its dependencies: Plug 'nvim-lua/plenary.nvim' @@ -112,6 +114,7 @@ set expandtab " converts tabs to white space set shiftwidth=4 " width for autoindents set autoindent " indent a new line the same amount as the line just typed set number " add line numbers +set relativenumber " add relative line numbers set wildmode=longest,list " get bash-like tab completions set cc=80 " set an 80 column border for good coding style filetype plugin indent on "allow auto-indenting depending on file type