summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrahmajit Das <brahmajit.xyz@gmail.com>2024-12-29 13:45:22 +0530
committerBrahmajit Das <brahmajit.xyz@gmail.com>2024-12-29 13:45:22 +0530
commit3150e42b2b3c2e9ea7da1d8ea0d06243d0d56d2a (patch)
tree263b1acf0d4ca3884d3d972e25d1a1e80c45fa07
parent2e775e9208ff1bb189c91d29621543312943c956 (diff)
nvim: filetype: adding filetype setttings
Signed-off-by: Brahmajit Das <brahmajit.xyz@gmail.com>
-rw-r--r--filetype.lua21
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