From 15b138b013104d3df315c9e84bb6fc1f285347d6 Mon Sep 17 00:00:00 2001 From: Brahmajit Das Date: Sun, 29 Dec 2024 13:59:28 +0530 Subject: restore utils.lua location, needed by filetypes. Moving filetypes to plugin folder Signed-off-by: Brahmajit Das --- filetype.lua | 21 --------------------- lua/utils.lua | 17 +++++++++++++++++ plugin/filetypes.lua | 21 +++++++++++++++++++++ plugin/utils.lua | 17 ----------------- 4 files changed, 38 insertions(+), 38 deletions(-) delete mode 100644 filetype.lua create mode 100644 lua/utils.lua create mode 100644 plugin/filetypes.lua delete mode 100644 plugin/utils.lua diff --git a/filetype.lua b/filetype.lua deleted file mode 100644 index 1725599..0000000 --- a/filetype.lua +++ /dev/null @@ -1,21 +0,0 @@ --- --- 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 diff --git a/lua/utils.lua b/lua/utils.lua new file mode 100644 index 0000000..7c8a7bf --- /dev/null +++ b/lua/utils.lua @@ -0,0 +1,17 @@ +-- +-- Auto group utilites +-- + +local M = {} +local cmd = vim.cmd + +function M.create_augroup(autocmds, name) + cmd('augroup ' .. name) + cmd('autocmd!') + for _, autocmd in ipairs(autocmds) do + cmd('autocmd ' .. table.concat(autocmd, ' ')) + end + cmd('augroup END') +end + +return M diff --git a/plugin/filetypes.lua b/plugin/filetypes.lua new file mode 100644 index 0000000..1725599 --- /dev/null +++ b/plugin/filetypes.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 diff --git a/plugin/utils.lua b/plugin/utils.lua deleted file mode 100644 index 7c8a7bf..0000000 --- a/plugin/utils.lua +++ /dev/null @@ -1,17 +0,0 @@ --- --- Auto group utilites --- - -local M = {} -local cmd = vim.cmd - -function M.create_augroup(autocmds, name) - cmd('augroup ' .. name) - cmd('autocmd!') - for _, autocmd in ipairs(autocmds) do - cmd('autocmd ' .. table.concat(autocmd, ' ')) - end - cmd('augroup END') -end - -return M -- cgit v1.2.3