update nvim config

This commit is contained in:
LordMZTE 2022-11-09 14:44:06 +01:00
parent 515dbb2519
commit 2caf40b372
Signed by: LordMZTE
GPG key ID: B64802DC33A64FF6
4 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,8 @@
local aerial = require "aerial"
local map = vim.api.nvim_set_keymap
aerial.setup {
backends = { "lsp", "treesitter", "markdown", "man" },
}
map("n", "-a", "<cmd>AerialToggle<CR>", { noremap = true, silent = true })

View file

@ -35,4 +35,5 @@ public Packet getDescriptionPacket() {{
{ content = i(1) }
)
),
s("markForUpdate", t [[this.worldObj.markBlockForUpdate(this.xCoord, this.yCoord, this.zCoord);]]),
})

View file

@ -167,5 +167,10 @@ return require("packer").startup(function(use)
config = pconf "nvim_ufo",
}
use {
"stevearc/aerial.nvim",
config = pconf "nvim_aerial"
}
cmp_plugins(use)
end)

View file

@ -10,6 +10,8 @@ o.tabstop = 4
o.shiftwidth = 4
o.expandtab = true
o.ignorecase = true
o.smartcase = true
o.scrolloff = 10
opt.number = true
opt.relativenumber = true
o.guifont = "Iosevka:h10"