summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/mango/lib.lua
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-06-10 23:07:28 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-06-10 23:07:28 +0200
commit511efe89ed084bc922ae142d32e08427859198f4 (patch)
treefef9294b6056b6cf972ea5e689f70da8184fafae /.config/nvim/lua/mango/lib.lua
parent64e2e90abdca04743558e3baf42a6b714b440bd0 (diff)
nvim: Completely rewrite my configuration
Diffstat (limited to '.config/nvim/lua/mango/lib.lua')
-rw-r--r--.config/nvim/lua/mango/lib.lua36
1 files changed, 0 insertions, 36 deletions
diff --git a/.config/nvim/lua/mango/lib.lua b/.config/nvim/lua/mango/lib.lua
deleted file mode 100644
index e062352..0000000
--- a/.config/nvim/lua/mango/lib.lua
+++ /dev/null
@@ -1,36 +0,0 @@
-local M = {}
-
-function M.set_tab_width(tw, localp)
- local opt = localp and vim.opt_local or vim.opt
-
- opt.tabstop = tw
- opt.softtabstop = tw
- opt.shiftwidth = tw
-end
-
-function M.remap(modes, from, to, opts)
- local ct = {}
-
- modes:gsub('.', function(c)
- table.insert(ct, c)
- end)
-
- vim.keymap.set(ct, from, to, opts or {
- noremap = true,
- silent = true,
- })
-end
-
-function M.scratch_buffer()
- vim.cmd [[
- if bufexists('scratch')
- buffer scratch
- else
- noswapfile hide enew
- setlocal buftype=nofile bufhidden=hide
- file scratch
- endif
- ]]
-end
-
-return M