diff options
Diffstat (limited to 'after/plugin/tsc.lua')
-rw-r--r-- | after/plugin/tsc.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/after/plugin/tsc.lua b/after/plugin/tsc.lua new file mode 100644 index 0000000..70131e7 --- /dev/null +++ b/after/plugin/tsc.lua @@ -0,0 +1,10 @@ +local status_ok, tc = pcall(require, "treesitter-context") +if not status_ok then + return +end + +tc.setup{ + enable = true, + line_numbers = true, + separator = '-', +} |