Skip to content

Instantly share code, notes, and snippets.

View xxxuuu's full-sized avatar
🎯
Focusing

x³u³ xxxuuu

🎯
Focusing
  • ShenZhen, China
  • 00:26 (UTC +08:00)
View GitHub Profile
@xxxuuu
xxxuuu / nijika.gif
Last active April 16, 2024 06:39
⸮ᵔᴥᵔ?
nijika.gif
vim.cmd("au FileType go setlocal noexpandtab tabstop=4 shiftwidth=4 softtabstop=4")
vim.cmd("au FileType vue setlocal noexpandtab tabstop=2 shiftwidth=2 softtabstop=2")
-- 显示不可见字符
vim.opt.list = true
-- 开启相对行数
vim.opt.relativenumber = true
-- Insert Mode 时 jj 映射成 Esc
lvim.keys.insert_mode["jj"] = "<Esc>"
-- Shift + h/l 左右切换 Tab
lvim.keys.normal_mode["<S-l>"] = ":BufferLineCycleNext<CR>"
"vim.insertModeKeyBindings": [
{
"before": ["j", "j"],
"after": ["<Esc>"]
},
{
"before": ["j", "k"],
"after": ["<Esc>"]
}
],