【Ubuntu】neovim & Lazyvim安装与卸载

安装neovim

bash 复制代码
# 下载 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

bash 复制代码
-- 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

bash 复制代码
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

bash 复制代码
-- 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 = true
        vim.opt_local.expandtab = true
        vim.opt_local.tabstop = 4
        vim.opt_local.shiftwidth = 4
        vim.opt_local.softtabstop = 4
    end,
})

/home/louis/.clang-format

bash 复制代码
# 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: Always
  OverEmptyLines: 5
AlignConsecutiveAssignments: true
SpacesBeforeTrailingComments: 2

安装Lazyvim

bash 复制代码
git clone https://github.com/LazyVim/starter ~/.config/nvim
rm -rf ~/.config/nvim/.git

清除

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

bash 复制代码
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 {} +
相关推荐
m0_6948455732 分钟前
服务器如何配置防火墙规则开放/关闭端口?
linux·服务器·安全·云计算
阿巴~阿巴~1 小时前
Linux基本命令篇 —— alias命令
linux·服务器·bash
好名字更能让你们记住我2 小时前
Linux多线程(十二)之【生产者消费者模型】
linux·运维·服务器·jvm·windows·centos
矩阵老炮2 小时前
Ubuntu20.4编译AOSP源码实践
ubuntu·aosp
学习编程的gas2 小时前
Linux开发工具——gcc/g++
linux·运维·服务器
嵌入式成长家2 小时前
ubuntu rules 使用规则
linux·ubuntu·rules 使用规则
_可乐无糖3 小时前
AWS WebRTC: 判断viewer端拉流是否稳定的算法
linux·服务器·webrtc·aws
数据智能老司机3 小时前
Linux内核编程——Linux设备模型
linux·架构·操作系统
椰汁菠萝3 小时前
ubuntu下免sudo执行docker
ubuntu·docker·免sudo
BD_Marathon3 小时前
ubuntu防火墙使用
linux·ubuntu