vim: add plugin 'johmsalas/text-case.nvim'

This commit is contained in:
Fernando Schauenburg 2024-02-12 23:36:20 +01:00
parent 8686312b40
commit 389140cfc1
2 changed files with 16 additions and 0 deletions

View file

@ -34,6 +34,7 @@
"telescope-file-browser.nvim": { "branch": "master", "commit": "6dd6522bc1a4cbe5883eb0272f5cc7a54ae3858b" },
"telescope-fzf-native.nvim": { "branch": "main", "commit": "6c921ca12321edaa773e324ef64ea301a1d0da62" },
"telescope.nvim": { "branch": "master", "commit": "236083884cfe6c874e03e6cb4e7cb08809c1333c" },
"text-case.nvim": { "branch": "main", "commit": "5d85b7495c3cf8e842e4d2528edc68e6fe7c92c8" },
"todo-comments.nvim": { "branch": "main", "commit": "833d8dd8b07eeda37a09e99460f72a02616935cb" },
"trouble.nvim": { "branch": "main", "commit": "f1168feada93c0154ede4d1fe9183bf69bac54ea" },
"undotree": { "branch": "master", "commit": "7df3be7a261ea31b528aa442b494fcb458f3d968" },

View file

@ -0,0 +1,15 @@
local M = { 'johmsalas/text-case.nvim' }
M.event = {
'BufReadPost',
'BufNewFile',
}
M.config = function()
require('textcase').setup {
prefix = '<leader>c',
}
end
return M