WIP
All checks were successful
ci/woodpecker/push/check Pipeline was successful

This commit is contained in:
Bruno BELANYI 2024-04-09 17:56:28 +01:00
parent ba2022d3c8
commit f5afb4953f
2 changed files with 37 additions and 0 deletions

19
scripts/minimal_init.lua Normal file
View file

@ -0,0 +1,19 @@
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 },
})