vim.opt.runtimepath:append(os.getenv("NVIM_PLENARY")) vim.opt.runtimepath:append(os.getenv("NVIM_TREESITTER")) vim.cmd.runtime({ "plugin/plenary.vim", bang = true }) vim.cmd.runtime({ "plugin/nvim-treesitter.lua", bang = true }) vim.filetype.add({ extension = { bp = "bp", }, }) vim.o.swapfile = false vim.bo.swapfile = false require("nvim-treesitter.configs").setup({ indent = { enable = true }, highlight = { enable = true }, })