From 2200704e49b925914be988b4be9a6e4a4a4c2631 Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 18 Apr 2023 23:30:18 -0500 Subject: [PATCH] disable lazy loading for vimwiki fix tab settings in nvim's init.lua update scripts version --- .config/nvchad/custom/init.lua | 10 +++------- .config/nvchad/custom/plugins.lua | 1 + .local/scripts | 2 +- 3 files changed, 5 insertions(+), 8 deletions(-) diff --git a/.config/nvchad/custom/init.lua b/.config/nvchad/custom/init.lua index 30c6a20..478f42c 100644 --- a/.config/nvchad/custom/init.lua +++ b/.config/nvchad/custom/init.lua @@ -5,14 +5,10 @@ -- pattern = "*", -- command = "tabdo wincmd =", -- }) - -local g = vim.g -local wo = vim.wo -local bo = vim.bo local opt = vim.opt -bo.tabstop = 4 -bo.shiftwidth = 4 -bo.expandtab = true +opt.tabstop = 4 +opt.shiftwidth = 4 +opt.expandtab = true opt.colorcolumn = "80" diff --git a/.config/nvchad/custom/plugins.lua b/.config/nvchad/custom/plugins.lua index 31e66af..ca02ab3 100644 --- a/.config/nvchad/custom/plugins.lua +++ b/.config/nvchad/custom/plugins.lua @@ -49,6 +49,7 @@ local plugins = { { "vimwiki/vimwiki", + lazy = false, }, -- To make a plugin not be loaded diff --git a/.local/scripts b/.local/scripts index d5998fb..8e352fc 160000 --- a/.local/scripts +++ b/.local/scripts @@ -1 +1 @@ -Subproject commit d5998fb3de3a70cd1c88c99207877fc7759b967c +Subproject commit 8e352fcc803e2af90b71417ce86d9ca21d5e1be5