当前位置: 首页 > news >正文

【Ubuntu】neovim Lazyvim安装与卸载

安装neovim

# 下载 AppImage
wget https://github.com/neovim/neovim/releases/latest/download/nvim-linux-x86_64.appimage# 添加执行权限
chmod u+x nvim-linux-x86_64.appimage# 移动到系统路径,重命名为 nvim
sudo mv nvim-linux-x86_64.appimage /usr/local/bin/nvim# 安装相关需要的软件
sudo apt install curl xclip git clang-format-19 fzf make

code

/home/louis/.config/nvim/init.lua

-- bootstrap lazy.nvim, LazyVim and your plugins
require("config.lazy")-- 基本显示与缩进配置
vim.opt.number = true           -- 显示行号
vim.opt.smartindent = true      -- 智能自动缩进
vim.opt.shiftwidth = 4          -- 自动缩进时,每一级缩进 4 个空格
vim.opt.tabstop = 4             -- 设置 tab 字符显示为 4 个空格宽度
vim.opt.expandtab = true         -- 将 tab 转换为空格
vim.opt.softtabstop = 4         -- 按退格键时一次删除 4 个空格-- 禁用在 C、C++、Java、Python 等语言中换行后,自动添加注释符号
vim.api.nvim_create_autocmd("FileType", {pattern = {"c", "cpp", "java", "python", "javascript"},command = "setlocal formatoptions-=c formatoptions-=r formatoptions-=o"
})vim.o.encoding = "utf-8"
vim.o.fileencoding = "utf-8"
vim.o.fileencodings = "utf-8,ucs-bom,gbk,cp936"

clang-format

/home/louis/.config/nvim/lua/plugins/conform.lua

return {{"stevearc/conform.nvim",optional = true,opts = {formatters_by_ft = {["c"] = { "clang_format" },["cpp"] = { "clang_format" },["c++"] = { "clang_format" },},formatters = {clang_format = {command = "clang-format-19", -- 强制系统的-- prepend_args = { "--style=google" },-- args = { "--assume-filename", "$FILENAME" },env = { PATH = "/usr/bin:/usr/local/bin" }, -- 👈 这里彻底断掉 Mason路径影响},},},},
}

/home/louis/.config/nvim/lua/config/autocmds.lua

-- Autocmds are automatically loaded on the VeryLazy event
-- Default autocmds that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/autocmds.lua
--
-- Add any additional autocmds here
-- with `vim.api.nvim_create_autocmd`
--
-- Or remove existing autocmds by their group name (which is prefixed with `lazyvim_` for the defaults)
-- e.g. vim.api.nvim_del_augroup_by_name("lazyvim_wrap_spell")
vim.api.nvim_create_autocmd({"FileType"}, {pattern = {"c", "cpp", "md", "txt", "c.snippets", "cpp.snippets"},callback = function()vim.b.autoformat = truevim.opt_local.expandtab = truevim.opt_local.tabstop = 4vim.opt_local.shiftwidth = 4vim.opt_local.softtabstop = 4end,
})

/home/louis/.clang-format

# SPDX-License-Identifier: GPL-2.0
# clang-format 配置,适用于 clang-format >= 11
---
# 与内核风格保持一致的基本设置
IndentWidth:                8     # 缩进宽度为 8 空格 :contentReference[oaicite:1]{index=1}
TabWidth:                   8     # Tab 宽度为 8 空格 :contentReference[oaicite:2]{index=2}
UseTab:                     Always # 永远使用 Tab 进行缩进 :contentReference[oaicite:3]{index=3}
ColumnLimit:                96    # 最大行宽 80 字符 :contentReference[oaicite:4]{index=4}
ContinuationIndentWidth:    8     # 换行缩进同样为 8 空格 :contentReference[oaicite:5]{index=5}# 括号和大括号的换行
BreakBeforeBraces:         Allman 
BraceWrapping:AfterFunction:            true  # 函数定义之后换行并缩进大括号 :contentReference[oaicite:6]{index=6}AfterControlStatement:    false # if/for/while 等语句不另起一行 :contentReference[oaicite:7]{index=7}# 空格和对齐
SpaceBeforeParens:          ControlStatementsExceptForEachMacros
PointerAlignment:           Right # 指针符号靠右,如 `int *ptr` :contentReference[oaicite:8]{index=8}
IndentCaseLabels:           false # switch 中的 case 与 switch 同级缩进 :contentReference[oaicite:9]{index=9}
IndentGotoLabels:           false # goto 标签与代码同级 :contentReference[oaicite:10]{index=10}
SpaceBeforeCpp11BracedList: true   # <-- 新增
SpacesInContainerLiterals:   true   # <-- 新增# 针对 for_each 宏的特殊处理
ForEachMacros:- 'for_each%'- '__for_each_%'- '__hlist_for_each_%'- '__map__for_each_%'- '__rq_for_each_%'
# 可根据子目录需要自行增加或删减 :contentReference[oaicite:11]{index=11}# include 排序与格式
SortIncludes:              false # 内核不自动排序 include :contentReference[oaicite:12]{index=12}# 注释与空行保留
MaxEmptyLinesToKeep:       1     # 最多保留 1 个空行 :contentReference[oaicite:13]{index=13}
ReflowComments:            false # 不自动折行注释 :contentReference[oaicite:14]{index=14}
AlignTrailingComments:Kind: AlwaysOverEmptyLines: 5
AlignConsecutiveAssignments: true
SpacesBeforeTrailingComments: 2

安装Lazyvim

git clone https://github.com/LazyVim/starter ~/.config/nvim
rm -rf ~/.config/nvim/.git

清除

有时候配置neovim错误, 不知道哪里出错,可以先全部删除清空再重新配置。

sudo apt remove --purge neovim
sudo apt autoremove --purge
sudo rm -rf /opt/nvimxxxx    //自己从github上下载的nvim 源码rm -rf ~/.config/nvim
rm -rf ~/.local/share/nvim
rm -rf ~/.cache/nvim
rm -rf ~/.config/lazyvim
rm -rf ~/.local/state/nvim
rm -rf ~/.vim
rm -rf ~/.vimrc
rm -rf ~/.nvim
rm -rf ~/.nvimrc
find ~/.local -type d -name '*nvim*' -exec rm -rf {} +
find ~/.cache -type d -name '*nvim*' -exec rm -rf {} +

相关文章:

  • 网络状态可以通过hutool.HttpStatus获取
  • 讯联云库项目开发日志(一)
  • 3.2 一点一世界
  • 嵌入式学习笔记 - HAL_ADC_ConfigChannel函数解析
  • 出于PCB设计层面考虑,连排半孔需要注意哪些事项?
  • 构建媲美 ChatGPT 的 AI 交互界面—OpenWebUI
  • Flannel UDP 模式的优缺点
  • WebRTC技术EasyRTC嵌入式音视频通信SDK打造远程实时视频通话监控巡检解决方案
  • JPG与PDF格式转换器
  • 06 mysql之DML
  • R-tree详解
  • 2025年第十六届蓝桥杯大赛软件赛C/C++大学B组题解
  • C++设计模式——单例模式
  • SpringBoot 3.X 开发自己的 Spring Boot Starter 和 SpringBoot 2.x 的区别
  • Python查询ES错误ApiError(406, ‘Content-Type ...is not supported
  • 【传感器多模态融合与AI驱动】
  • Leetcode 3548. Equal Sum Grid Partition II
  • 常见网卡接口命名方式
  • OpenAI for Countries:全球AI基础设施的“技术基建革命”
  • 苍穹外卖--新增菜品
  • 首次采用“顶置主星+侧挂从星”布局,长二丁“1箭12星”发射成功
  • 加拿大新政府宣誓就职
  • 国务院关税税则委:调整对原产于美国的进口商品加征关税措施
  • 山东省市监局“你点我检”专项抽检:一批次“无抗”鸡蛋农兽药残留超标
  • 印度军方否认S-400防空系统被摧毁
  • 碧桂园:砸锅卖铁保交房、持续推进保主体,尽快让公司恢复正常经营