mirror of
https://github.com/ray-x/navigator.lua
synced 2024-11-03 15:40:20 +00:00
25 lines
318 B
VimL
25 lines
318 B
VimL
set rtp +=.
|
|
set rtp +=../plenary.nvim/
|
|
|
|
|
|
runtime! plugin/plenary.vim
|
|
|
|
|
|
set noswapfile
|
|
set nobackup
|
|
|
|
filetype indent off
|
|
set nowritebackup
|
|
set noautoindent
|
|
set nocindent
|
|
set nosmartindent
|
|
set indentexpr=
|
|
|
|
|
|
lua << EOF
|
|
_G.test_rename = true
|
|
_G.test_close = true
|
|
require("plenary/busted")
|
|
require("navigator").setup()
|
|
EOF
|