mirror of
https://github.com/windwp/nvim-ts-autotag.git
synced 2025-01-01 11:39:14 -06:00
31 lines
463 B
VimL
31 lines
463 B
VimL
set rtp +=.
|
|
set rtp +=../plenary.nvim/
|
|
set rtp +=../nvim-treesitter
|
|
set rtp +=../playground/
|
|
|
|
|
|
runtime! plugin/plenary.vim
|
|
runtime! plugin/nvim-treesitter.vim
|
|
runtime! plugin/playground.vim
|
|
|
|
|
|
set noswapfile
|
|
set nobackup
|
|
|
|
filetype indent off
|
|
set nowritebackup
|
|
set noautoindent
|
|
set nocindent
|
|
set nosmartindent
|
|
set indentexpr=
|
|
|
|
|
|
lua << EOF
|
|
_G.__is_log=true
|
|
_G.test_rename = true
|
|
_G.test_close = true
|
|
require("plenary/busted")
|
|
require("nvim-ts-autotag").setup()
|
|
EOF
|
|
|