diff options
author | Cody Hiar <cody@hiar.ca> | 2021-09-04 12:48:03 -0600 |
---|---|---|
committer | Cody Hiar <cody@hiar.ca> | 2021-09-04 12:48:03 -0600 |
commit | 84eab813d56e35d3626ff14da85af502b835e975 (patch) | |
tree | 3c067290c76409c61b2d24685c707b0f87575180 /lua/treesitterconf.lua | |
parent | 6c1793d98f244f0b6fc1b9eb163647dc9032f358 (diff) |
move everything into 1 file
Diffstat (limited to 'lua/treesitterconf.lua')
-rw-r--r-- | lua/treesitterconf.lua | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/lua/treesitterconf.lua b/lua/treesitterconf.lua deleted file mode 100644 index ae491bb..0000000 --- a/lua/treesitterconf.lua +++ /dev/null @@ -1,18 +0,0 @@ -local present, ts_config = pcall(require, "nvim-treesitter.configs") -if not present then - return -end - -ts_config.setup { - ensure_installed = { - "python", - "lua", - "nix", - }, - highlight = { - enable = true, - }, - indent = { - enable = true, - } -} |