aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/minimal_init.lua
blob: 5ae1836ef52c7d265c3ec2ab60c358db15ea2832 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
vim.opt.runtimepath:append "."
vim.cmd.runtime { "plugin/plenary.vim", bang = true }
vim.cmd.runtime { "plugin/nvim-treesitter.lua", bang = true }

vim.filetype.add {
  extension = {
    conf = "hocon",
    ncl = "nickel",
    usd = "usd",
    usda = "usd",
  },
}

vim.o.swapfile = false
vim.bo.swapfile = false

require("nvim-treesitter.configs").setup {
  indent = { enable = true },
  highlight = { enable = true },
}