1
Fork 0

feat: fixed .nix commentstring

This commit is contained in:
Matei Adriel 2022-02-07 12:52:21 +02:00
parent 8ea7367442
commit 611e8c3075

View file

@ -2,15 +2,17 @@ local M = {}
-- Update comments for certain languages
local function setCommentString(extension, commentString)
vim.cmd('autocmd BufEnter '.. extension .. ' :lua vim.api.nvim_buf_set_option(0, "commentstring", "' .. commentString .. '")')
vim.cmd('autocmd BufFilePost '.. extension .. ' :lua vim.api.nvim_buf_set_option(0, "commentstring", "' .. commentString ..'")')
vim.cmd('augroup set-commentstring-' .. extension)
vim.cmd('autocmd!')
vim.cmd('autocmd BufEnter *.' .. extension .. ' :lua vim.api.nvim_buf_set_option(0, "commentstring", "' .. commentString .. '")')
vim.cmd('autocmd BufFilePost *.' .. extension .. ' :lua vim.api.nvim_buf_set_option(0, "commentstring", "' .. commentString .. '")')
vim.cmd('augroup END')
end
function M.setup()
require('nvim_comment').setup()
setCommentString(".nix", "# %s")
setCommentString("nix", "# %s")
end
return M