NvChad 的自定义配置不起作用

问题描述 投票:0回答:1
 "nvchad.mappings"

-- add yours here

local map = vim.keymap.set

map("n", ";", ":", { desc = "CMD enter command mode" })

map("i", "jk", "<ESC>")

-- Move lines up/down

map("n", "<A-Down>", ":m .+1<CR>", { desc = "Move line down" })

map("n", "<A-j>", ":m .+1<CR>", { desc = "Move line down" })

map("n", "<A-Up>", ":m .-2<CR>", { desc = "Move line up" })

上面的代码在

lua/mappings.lua
qns 1: .我想添加一些自定义键盘快捷键,但此配置不起作用。我不知道为什么。

enter image description here

qns 2 :(这应该是默认行为)当我在 nvim 中打开任何代码时,“alt + i”也不起作用,这是用于打开浮动终端的。当我打开 neovim 应用程序(黑色应用程序)时它才起作用。我没有打开那个终端,而是进入了winsert模式

所以我研究了如何进行配置,大部分都是旧的文件结构。 https://github.com/mgastonportillo/nvchad-config 使用此参考来更改我的配置,但没有任何反应。

configuration neovim nvim-lspconfig nvchad
1个回答
0
投票

如果您使用的是2.5版本,配置结构发生了变化

© www.soinside.com 2019 - 2024. All rights reserved.