初始化仓库
This commit is contained in:
commit
529c0f9160
0
lua/keymaps.lua
Normal file
0
lua/keymaps.lua
Normal file
12
lua/options.lua
Normal file
12
lua/options.lua
Normal 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
14
lua/plugins.lua
Normal 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({})
|
Loading…
Reference in New Issue
Block a user