Files
dotfiles/.config/nvim/init.lua
2026-02-06 17:17:48 +08:00

9 lines
350 B
Lua
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
require("config.lazy")
-- 基础缩进设置
vim.opt.tabstop = 4 -- 1个Tab显示为4个空格
vim.opt.shiftwidth = 4 -- 自动缩进时缩进4个空格
vim.opt.expandtab = true -- 把Tab键变成空格现代编程通用习惯
vim.opt.softtabstop = 4 -- 编辑模式下按退格键退回4个空格
-- 显示行数
vim.opt.number = true