You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
navigator.lua/tests/minimal.vim

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