diff options
author | Julian T <julian@jtle.dk> | 2021-08-18 18:11:21 +0200 |
---|---|---|
committer | Julian T <julian@jtle.dk> | 2021-08-18 18:11:42 +0200 |
commit | 9e2b2d0b1168d7cb35cc87299ecbe85dbb34f3af (patch) | |
tree | 3d190e311db7d3f10e621221bbb83b56d2f578ef /vim-extra/.config/nvim/extra.vim | |
parent | 9d2e9563583ed6547b9a52707ca0228e0096c7a5 (diff) |
Move to normal vim and several config changes
Diffstat (limited to 'vim-extra/.config/nvim/extra.vim')
-rw-r--r-- | vim-extra/.config/nvim/extra.vim | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/vim-extra/.config/nvim/extra.vim b/vim-extra/.config/nvim/extra.vim index d508018..4ff2c93 100644 --- a/vim-extra/.config/nvim/extra.vim +++ b/vim-extra/.config/nvim/extra.vim @@ -1,4 +1,4 @@ -" Plugins +" Plugins{{{ " set the runtime path to include Vundle and initialize set rtp+=~/.config/nvim/bundle/Vundle.vim call vundle#begin("~/.config/nvim/bundle") @@ -38,7 +38,7 @@ Plugin 'tpope/vim-fugitive' " File support - " Plugin 'cespare/vim-toml' + Plugin 'cespare/vim-toml' Plugin 'lervag/vimtex' " Plugin 'aklt/plantuml-syntax' Plugin 'LnL7/vim-nix' @@ -54,9 +54,9 @@ " Plugin 'SirVer/ultisnips' " Plugin 'honza/vim-snippets' - call vundle#end() " required + call vundle#end() " required}}} -" Completion +" Completion{{{ set completeopt+=menuone set completeopt+=noselect @@ -106,4 +106,4 @@ " \ 'takeover': 'never', " \ }, " \ } - " \ } + " \ }}}} |