40 lines
831 B
Lua
40 lines
831 B
Lua
vim.loader.enable()
|
|
|
|
if vim.g.neovide then
|
|
require("neovide")
|
|
else
|
|
vim.opt.termguicolors = true
|
|
end
|
|
|
|
vim.opt.number = true
|
|
vim.opt.tabstop = 2
|
|
vim.opt.shiftwidth = 2
|
|
vim.opt.expandtab = false
|
|
vim.opt.relativenumber = true
|
|
vim.opt.cursorline = true
|
|
vim.opt.ignorecase = true
|
|
vim.opt.smartcase = true
|
|
|
|
|
|
vim.g.maplocalleader = ','
|
|
|
|
-- bootstrap lazy
|
|
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("plugins")
|
|
vim.api.nvim_create_autocmd("FileType", {
|
|
pattern = { "*.yaml", "*.yml" },
|
|
command = "setlocal tabstop=2 shiftwidth=2 expandtab",
|
|
})
|