初始化仓库

This commit is contained in:
JRNitre 2025-02-27 20:35:45 +08:00
commit 529c0f9160
5 changed files with 31 additions and 0 deletions

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# JRNeovim
JRNitre 的 Neovim 配置方案

2
init.lua Normal file
View File

@ -0,0 +1,2 @@
require("options")
require("plugins")

0
lua/keymaps.lua Normal file
View File

12
lua/options.lua Normal file
View File

@ -0,0 +1,12 @@
vim.opt.clipboard = 'unnamedplus'
vim.opt.mouse = 'a'
-- UI Config
vim.opt.number = true -- Show absolute number
-- Tab Config
vim.opt.tabstop = 2 -- Number of space in TAB
vim.opt.softtabstop = 2
vim.opt.shiftwidth = 2
vim.opt.expandtab = true

14
lua/plugins.lua Normal file
View File

@ -0,0 +1,14 @@
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not (vim.uv or vim.loop).fs_stat(lazypath) then
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable", -- latest stable release
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup({})