diff options
author | Christian Chiarulli <[email protected]> | 2021-11-05 22:15:10 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2021-11-05 22:15:10 +0000 |
commit | e193d6aed5ef854e613e7044b44be414a085cf03 (patch) | |
tree | a9f497b3fa913484291ae9c87e2d6498c7520383 /lua/lvim/plugins.lua | |
parent | 6b3e0574a3d2577f8c0558144202ba12f3978cae (diff) |
feat: enable context commentstring by default (#1904)
Diffstat (limited to 'lua/lvim/plugins.lua')
-rw-r--r-- | lua/lvim/plugins.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lua/lvim/plugins.lua b/lua/lvim/plugins.lua index 4c3a0f67..801f915b 100644 --- a/lua/lvim/plugins.lua +++ b/lua/lvim/plugins.lua @@ -75,6 +75,10 @@ return { require("lvim.core.treesitter").setup() end, }, + { + "JoosepAlviste/nvim-ts-context-commentstring", + event = "BufReadPost", + }, -- NvimTree { |