1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-10-12 20:41:16 +02:00

nvim: added plugin for easier csv editing

This commit is contained in:
tiyn
2025-03-01 05:16:31 +01:00
parent 3446c0fc74
commit 9894e74d5f
3 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
vim.api.nvim_create_autocmd({ 'VimEnter' },
{
callback = function()
require("csvview").enable()
end
})
vim.o.textwidth = 0