nvim-autopairs/tests/minimal.vim

31 lines
605 B
VimL
Raw Normal View History

set rtp +=.
2021-04-17 09:30:25 +03:00
set rtp +=../plenary.nvim/
set rtp +=../nvim-treesitter
set rtp +=../playground/
2021-04-21 07:39:36 +03:00
lua _G.__is_log = true
lua vim.fn.setenv("DEBUG_PLENARY", true)
runtime! plugin/plenary.vim
2021-04-17 09:30:25 +03:00
runtime! plugin/nvim-treesitter.vim
runtime! plugin/playground.vim
2021-04-21 07:39:36 +03:00
runtime! plugin/nvim-autopairs.vim
2021-04-17 09:30:25 +03:00
set noswapfile
set nobackup
filetype indent off
2021-07-23 13:48:53 +03:00
set expandtab
set shiftwidth=4
2021-04-17 09:30:25 +03:00
set nowritebackup
set noautoindent
set nocindent
set nosmartindent
set indentexpr=
2021-04-17 09:30:25 +03:00
lua << EOF
require("plenary/busted")
2022-05-03 11:20:38 +03:00
require("nvim-treesitter").setup()
2021-04-17 15:50:45 +03:00
vim.cmd[[luafile ./tests/test_utils.lua]]
2021-04-17 09:30:25 +03:00
require("nvim-autopairs").setup()
EOF