This commit is contained in:
parent
f6e1266493
commit
045e505073
2 changed files with 37 additions and 0 deletions
19
scripts/minimal_init.lua
Normal file
19
scripts/minimal_init.lua
Normal 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 },
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue