some formatting
This commit is contained in:
parent
8b437e4177
commit
ac90c1943a
8
init.lua
8
init.lua
|
|
@ -2,6 +2,10 @@ require "core.options"
|
||||||
require("core.utils").load_mappings()
|
require("core.utils").load_mappings()
|
||||||
-- require("colors").core_setup()
|
-- require("colors").core_setup()
|
||||||
|
|
||||||
|
-- add binaries installed by mason.nvim to path
|
||||||
|
vim.env.PATH = vim.env.PATH .. ":" .. vim.fn.stdpath "data" .. "/mason/bin"
|
||||||
|
|
||||||
|
|
||||||
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
||||||
if not vim.loop.fs_stat(lazypath) then
|
if not vim.loop.fs_stat(lazypath) then
|
||||||
vim.fn.system({
|
vim.fn.system({
|
||||||
|
|
@ -16,10 +20,6 @@ end
|
||||||
vim.opt.rtp:prepend(lazypath)
|
vim.opt.rtp:prepend(lazypath)
|
||||||
require "plugins"
|
require "plugins"
|
||||||
|
|
||||||
-- add binaries installed by mason.nvim to path
|
|
||||||
vim.env.PATH = vim.env.PATH .. ":" .. vim.fn.stdpath "data" .. "/mason/bin"
|
|
||||||
|
|
||||||
|
|
||||||
-- Set colorscheme
|
-- Set colorscheme
|
||||||
require('rose-pine').setup({
|
require('rose-pine').setup({
|
||||||
disable_background = true
|
disable_background = true
|
||||||
|
|
|
||||||
Reference in New Issue