Compare commits
No commits in common. "b4e439dc9c6e5277fc18852fec7baca9af304899" and "e9ce630ca13375863ce98426ffaf27d211531075" have entirely different histories.
b4e439dc9c
...
e9ce630ca1
@ -2,10 +2,3 @@ vim.opt_local.shiftwidth = 2
|
||||
vim.opt_local.modeline = true
|
||||
vim.opt_local.wrap = false
|
||||
vim.opt_local.conceallevel = 1
|
||||
vim.opt_local.comments = {
|
||||
":- [ ]",
|
||||
":- [x]",
|
||||
":- [X]",
|
||||
":- [-]",
|
||||
":-"
|
||||
}
|
||||
|
@ -105,8 +105,6 @@ M.setup = function()
|
||||
|
||||
-- Binding to allow shift tab 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
|
||||
vim.keymap.set("i", "<A-->", "—", { silent = true, desc = "Insert: Em Dash" })
|
||||
|
@ -139,9 +139,6 @@ M.setup = function()
|
||||
|
||||
-- Allow per project configuration via exrc
|
||||
opt.exrc = true
|
||||
|
||||
-- Add `r` & `o` beyond the defaults provided, supports comment leaders
|
||||
opt.formatoptions = "tcqjro"
|
||||
end
|
||||
|
||||
return M
|
||||
|
Loading…
Reference in New Issue
Block a user