🔧 chore(nvim): some typos here and there
This commit is contained in:
parent
cb68f38aeb
commit
f98683298e
4 changed files with 5 additions and 15 deletions
|
@ -86,7 +86,3 @@ end
|
|||
vim.o.winwidth = 10
|
||||
vim.o.winminwidth = 10
|
||||
vim.o.equalalways = false
|
||||
-- vim.opt.shiftwidth = 4
|
||||
-- vim.opt.tabstop = 4
|
||||
-- vim.opt.smartindent = true
|
||||
-- vim.opt.expandtab = true
|
||||
|
|
|
@ -13,7 +13,6 @@ return {
|
|||
"folke/edgy.nvim",
|
||||
optional = true,
|
||||
opts = function(_, opts)
|
||||
opts.right = opts.right or {}
|
||||
table.insert(opts.right, {
|
||||
title = "Symbols Outline",
|
||||
ft = "outline",
|
||||
|
|
|
@ -32,14 +32,9 @@ return {
|
|||
},
|
||||
{
|
||||
"mfussenegger/nvim-ansible",
|
||||
-- stylua: ignore
|
||||
keys = {
|
||||
{
|
||||
"<leader>tp",
|
||||
function()
|
||||
require("ansible").run()
|
||||
end,
|
||||
desc = "Run Ansible Playbooks",
|
||||
},
|
||||
{ "<leader>tp", function() require("ansible").run() end, desc = "Run Ansible Playbooks" },
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
|
@ -1,9 +1,6 @@
|
|||
return {
|
||||
"HiPhish/rainbow-delimiters.nvim",
|
||||
event = "BufRead",
|
||||
config = function(_, opts)
|
||||
require("rainbow-delimiters.setup").setup({ opts })
|
||||
end,
|
||||
opts = {
|
||||
highlight = {
|
||||
"RainbowDelimiterBlue",
|
||||
|
@ -15,4 +12,7 @@ return {
|
|||
"RainbowDelimiterGreen",
|
||||
},
|
||||
},
|
||||
config = function(_, opts)
|
||||
require("rainbow-delimiters.setup").setup({ opts })
|
||||
end,
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue