Add Neovim config with lazy.nvim bootstrap
This commit is contained in:
parent
b311d2d827
commit
4e92ae02c1
1 changed files with 28 additions and 0 deletions
28
nvim/init.lua
Normal file
28
nvim/init.lua
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
-- Neovim config entry point
|
||||||
|
-- Requires Neovim 0.10+
|
||||||
|
|
||||||
|
vim.opt.number = true
|
||||||
|
vim.opt.relativenumber = true
|
||||||
|
vim.opt.tabstop = 4
|
||||||
|
vim.opt.shiftwidth = 4
|
||||||
|
vim.opt.expandtab = true
|
||||||
|
vim.opt.wrap = false
|
||||||
|
vim.opt.scrolloff = 8
|
||||||
|
vim.opt.colorcolumn = "100"
|
||||||
|
vim.opt.signcolumn = "yes"
|
||||||
|
vim.opt.updatetime = 250
|
||||||
|
vim.opt.termguicolors = true
|
||||||
|
|
||||||
|
-- Leader key
|
||||||
|
vim.g.mapleader = " "
|
||||||
|
vim.g.maplocalleader = " "
|
||||||
|
|
||||||
|
-- Bootstrap lazy.nvim
|
||||||
|
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
||||||
|
if not vim.loop.fs_stat(lazypath) then
|
||||||
|
vim.fn.system({ "git", "clone", "--filter=blob:none",
|
||||||
|
"https://github.com/folke/lazy.nvim.git", "--branch=stable", lazypath })
|
||||||
|
end
|
||||||
|
vim.opt.rtp:prepend(lazypath)
|
||||||
|
|
||||||
|
require("lazy").setup("plugins", { change_detection = { notify = false } })
|
||||||
Loading…
Reference in a new issue