【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 {} +
相关推荐
huangjiazhi_1 天前
在Linux上无法访问usb视频设备
linux·运维·服务器
yyy0002001 天前
压缩和归档 文件传输
linux·运维·服务器
STCNXPARM1 天前
深度剖析Linux内核无线子系统架构
linux·运维·系统架构·wifi·无线子系统
烟雨书信1 天前
LINUX中Docker Swarm的介绍和使用
java·linux·docker
代码的余温1 天前
Linux内核调优实战指南
linux·服务器·数据库
m0_694845571 天前
教你使用服务器如何搭建数据库
linux·运维·服务器·数据库·云计算
空灵之海1 天前
Ubuntu Server 22.04.5系统安装教程
linux·运维·ubuntu
gamers1 天前
rock linux 9 安装mysql 5.7.44
linux·mysql·adb
二进制_博客1 天前
给CentOS的虚拟机扩容
linux·运维·centos
千钰v1 天前
Tcpdump: The Basics Tcpdump 基础
linux·运维·网络·tcpdump·tryhackme