More neovim testing

This commit is contained in:
2024-02-06 18:29:51 -05:00
parent 08713c254f
commit c26f6a6bf5
5 changed files with 78 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ set nocompatible
"{- PLUGIN MANAGER -}"
" Load pathogen, the plugin manager, which then loads all plugins "
runtime bundle/pathogen/autoload/pathogen.vim
execute pathogen#infect()
execute pathogen#infect('bundle/{}', 'nvim-bundle/{}')
"{- COMMANDS -}"
@@ -31,7 +31,7 @@ set nocompatible
"{- INTERFACE -}"
" Colors and syntax highlighting "
colorscheme dim
colorscheme halfdab
set background=dark
filetype plugin on
syntax on
@@ -103,7 +103,8 @@ set nocompatible
set complete+=kspell
" Match the longest completion option then display menu
set completeopt=menuone,longest
"set completeopt=menuone,longest
set completeopt=menu,menuone,noselect
" Use UTF-8 "
set encoding=utf-8