nvim-ts-autotag/tests/minimal.vim

30 lines
519 B
VimL
Raw Normal View History

2021-03-08 06:19:01 -06:00
set rtp +=.
set rtp +=~/.vim/autoload/plenary.nvim/
2021-03-09 17:41:24 -06:00
set rtp +=~/.vim/autoload/nvim-treesitter
set rtp +=~/.vim/autoload/playground/
2021-03-08 06:19:01 -06:00
runtime! plugin/plenary.vim
runtime! plugin/nvim-treesitter.vim
2021-03-09 17:41:24 -06:00
runtime! plugin/playground.vim
2021-03-08 06:19:01 -06:00
set noswapfile
set nobackup
filetype indent off
set nowritebackup
set noautoindent
set nocindent
set nosmartindent
set indentexpr=
2021-03-12 18:52:51 -06:00
2021-03-08 06:19:01 -06:00
lua << EOF
2021-03-12 18:52:51 -06:00
2021-03-08 06:19:01 -06:00
local _, ts_utils = pcall(require, 'nvim-treesitter.ts_utils')
_G.T=ts_utils
require("plenary/busted")
require("nvim-ts-autotag").setup()
2021-03-12 18:52:51 -06:00
2021-03-08 06:19:01 -06:00
EOF
2021-03-12 18:52:51 -06:00