localhas_words_before =function()unpack=unpackortable.unpacklocalline, col =unpack(vim.api.nvim_win_get_cursor(0))returncol ~=0andvim.api.nvim_buf_get_lines(0, line -1, line,true)[1]:sub(col, col):match("%s") ==nilendlocalluasnip =require("luasnip")localcmp =require("cmp") ...
plugin-config是插件配置的文件夹,需要自己手动配置的插件在这里面建立一个文件夹 plugins.lua是插件管理(这里负责安装插件) nvim的基本配置步骤就是先更改完成基本的basic,然后设置一部分nvim自带功能的快捷键(将功能映射到自己喜欢的键位上面),然后开始安装插件,对插件进行配置(mason、null-ts、lsp、dap这些都有nvim...
这里需要安装两个包,第一个就是 nvim-tree,而第二个是一个可选包,主要是用来显示图标的。在plugin.lua中新增配置。 require("lazy").setup( -- 省略其他配置 {"kyazdani42/nvim-tree.lua", event ="VimEnter", dependencies ="nvim-tree/nvim-web-devicons"}, ) 之后在 lua 目录中新建一个 plugins...
每个插件如果需要单独配置,那么就写到nvim/after/plugin/<插件名>.rc.lua里。 这里需要单独配置的有lualine、nvim-cokeline、indent-blankline、neoscroll、和nvim-tree。 lualine.rc.lua local status, lualine = pcall(require, 'lualine') if (not status) then return end lualine.setup { options = {...
Lua Neovim config for the lazy neovimnvimneovim-confneovim-pluginneovim-configurationneovim-config UpdatedNov 19, 2024 Lua nvim-telescope/telescope.nvim Star16k Code Issues Pull requests Find, Filter, Preview, Pick. All lua, all the time. ...
neovim nvim neovim-dotfiles nvimrc hacktoberfest neovim-config nvim-plugin hacktoberfest2022 Updated Jul 22, 2024 Lua ggandor / leap.nvim Star 4.4k Code Issues Pull requests Discussions Neovim's answer to the mouse 🦘 vim neovim motion nvim neovim-plugin fennel nvim-plugin Updat...
After that I create a lua directory and ainit.luafile to create the usage for the plugin:~/.config/nvim/lua/init.lua After I did those step when I tried to open nvim It shows me this: Error detectedwhileprocessing /home/user/.config/nvim/init.vim: line3: E510...
You can editlua/modules/editor/config.lua'sconfig.nvim_treesitterfunction to add what you need. Forneoformat, you need to install corresponding formatter manually: #clangformatforc/cpp etcsudo pacman -S clang#gofmt and goimportsforgolanggo get -u golang.org/x/tools/...#luaformatterforlua...
通过内置的 REPL 检查状态::lua require'dap'.repl.open()或使用小部件 UI (:help dap-widgets) 请参阅: helpdap.txt和.:help dap-mapping``:help dap-api 支持的语言 理论上,应该支持存在调试适配器的所有语言。 可用的调试适配器 nvim-dap 调试适配器安装和配置 ...
chore: update theme plugin name、link 2年前 config.lua 增加插件与配置改进 2年前 github2ee.py 使用mason 代码lsp-install 2年前 init.lua 同步LunarVim 2年前 README SkCode 前言 从20 年开始接触 vim, 一开始可能是为了装逼, 后面发现 vim 还是挺不错的, 特别是用熟了之后形成了自己的工作流, 要...