aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/minimal_init.lua
blob: 1c57ee538e8fbc02acdb8fb270e968c915e19605 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
vim.cmd [[set runtimepath+=.]]
vim.cmd [[runtime! plugin/plenary.vim]]
vim.cmd [[runtime! plugin/nvim-treesitter.vim]]

vim.cmd [[au BufRead,BufNewFile *.conf set filetype=hocon]]

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

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