diff options
author | Brahmajit Das <brahmajit.xyz@gmail.com> | 2024-12-29 13:45:22 +0530 |
---|---|---|
committer | Brahmajit Das <brahmajit.xyz@gmail.com> | 2024-12-29 13:45:22 +0530 |
commit | 3150e42b2b3c2e9ea7da1d8ea0d06243d0d56d2a (patch) | |
tree | 263b1acf0d4ca3884d3d972e25d1a1e80c45fa07 | |
parent | 2e775e9208ff1bb189c91d29621543312943c956 (diff) |
nvim: filetype: adding filetype setttings
Signed-off-by: Brahmajit Das <brahmajit.xyz@gmail.com>
-rw-r--r-- | filetype.lua | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/filetype.lua b/filetype.lua new file mode 100644 index 0000000..1725599 --- /dev/null +++ b/filetype.lua @@ -0,0 +1,21 @@ +-- +-- Mainly filetype settings +-- + +local cmd = vim.cmd +local u = require('utils') + +u.create_augroup({ + { 'BufRead,BufNewFile', '/tmp/nail-*', 'setlocal', 'ft=mail' }, + { 'BufRead,BufNewFile', '*s-nail-*', 'setlocal', 'ft=mail' }, + { 'BufRead,BufNewFile', '*mutt-*', 'setlocal', 'ft=mail' }, + { 'BufRead', '/tmp/*mutt-*', 'setlocal', 'tw=72' }, +}, 'ftmail') + +-- Autoremove unwanted whitespaces +cmd [[ + au BufRead,BufNewFile *mutt-* setfiletype mail +]] + +-- Add in the following like to auto remove empty lines +-- au BufWritePre * %s/\s\+$//e |