diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2023-11-25 20:26:43 +0100 |
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2023-11-25 20:26:43 +0100 |
| commit | ba237783743060ec9eff9012e0519722129198ed (patch) | |
| tree | 580e440c4f43f1193b2797db02577897ac48b832 | |
| parent | d5c098d56c863edfc3f1418400e9c58c5e70bec4 (diff) | |
nvim: Set commentstring for EBNF
| -rw-r--r-- | .config/nvim/after/ftplugin/ebnf.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.config/nvim/after/ftplugin/ebnf.lua b/.config/nvim/after/ftplugin/ebnf.lua index 976b8d3..b1bb817 100644 --- a/.config/nvim/after/ftplugin/ebnf.lua +++ b/.config/nvim/after/ftplugin/ebnf.lua @@ -1 +1,2 @@ require('Comment.ft').ebnf = { '(*%s*)', '(*%s*)' } +vim.bo.commentstring = '(*%s*)' |