All checks were successful
ci/woodpecker/push/check Pipeline was successful
19 lines
447 B
Lua
19 lines
447 B
Lua
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 },
|
|
})
|