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.
go.nvim/lua/tests/minimal.vim

34 lines
578 B
VimL

set rtp +=.
set rtp +=../plenary.nvim/
set rtp +=../nvim-treesitter
runtime! plugin/plenary.vim
lua vim.fn.setenv("DEBUG_PLENARY", true)
runtime! plugin/plenary.vim
runtime! plugin/nvim-treesitter.vim
runtime! plugin/playground.vim
runtime! plugin/nvim-autopairs.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("go").setup({
gofmt = 'gofumpt',
goimport = "goimports",
lsp_cfg = true,
})
EOF