From 405d1fe61a18c66593dd9450198168fd6813fb32 Mon Sep 17 00:00:00 2001 From: Andrzej Stepien Date: Thu, 14 Mar 2024 14:12:31 +0100 Subject: [PATCH] point init to default options --- init.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index 215fc60..30d2062 100644 --- a/init.lua +++ b/init.lua @@ -1,4 +1,4 @@ -require("options") +require("options.default") require("keymaps") local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" @@ -9,7 +9,8 @@ if not vim.loop.fs_stat(lazypath) then "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", -- latest stable release - lazypath, }) + lazypath, + }) end vim.opt.rtp:prepend(lazypath)