Compare commits

..

No commits in common. "b4e439dc9c6e5277fc18852fec7baca9af304899" and "e9ce630ca13375863ce98426ffaf27d211531075" have entirely different histories.

3 changed files with 0 additions and 12 deletions

View File

@ -2,10 +2,3 @@ vim.opt_local.shiftwidth = 2
vim.opt_local.modeline = true vim.opt_local.modeline = true
vim.opt_local.wrap = false vim.opt_local.wrap = false
vim.opt_local.conceallevel = 1 vim.opt_local.conceallevel = 1
vim.opt_local.comments = {
":- [ ]",
":- [x]",
":- [X]",
":- [-]",
":-"
}

View File

@ -105,8 +105,6 @@ M.setup = function()
-- Binding to allow shift tab dedent -- Binding to allow shift tab dedent
vim.keymap.set("i", "<S-Tab>", "<C-d>", { silent = true, desc = "Insert: Dedent" }) vim.keymap.set("i", "<S-Tab>", "<C-d>", { silent = true, desc = "Insert: Dedent" })
-- Binding to allow shift space indent
vim.keymap.set("i", "<S-Space>", "<C-t>", { silent = true, desc = "Insert: Indent" })
-- Insert an Em Dash in insert mode -- Insert an Em Dash in insert mode
vim.keymap.set("i", "<A-->", "", { silent = true, desc = "Insert: Em Dash" }) vim.keymap.set("i", "<A-->", "", { silent = true, desc = "Insert: Em Dash" })

View File

@ -139,9 +139,6 @@ M.setup = function()
-- Allow per project configuration via exrc -- Allow per project configuration via exrc
opt.exrc = true opt.exrc = true
-- Add `r` & `o` beyond the defaults provided, supports comment leaders
opt.formatoptions = "tcqjro"
end end
return M return M