diff options
| author | srdusr <trevorgray@srdusr.com> | 2023-08-11 22:37:09 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2023-08-11 22:37:09 +0200 |
| commit | efb0b96a87920426387367e071b4a94e94cf3303 (patch) | |
| tree | 556ae2a2a24dadf8e31aa5ab0e637caf1f05e40a /init.lua | |
| parent | 7e3f32f105b0f32c252c8851e5604b1422c931ae (diff) | |
| download | dotfiles-efb0b96a87920426387367e071b4a94e94cf3303.tar.gz dotfiles-efb0b96a87920426387367e071b4a94e94cf3303.zip | |
Fixed formatting
Diffstat (limited to 'init.lua')
| -rw-r--r-- | init.lua | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -49,7 +49,6 @@ if impatient_ok then impatient.enable_profile() end - -- Schedule reading shadafile to improve the startup time vim.opt.shadafile = "NONE" vim.schedule(function() @@ -57,7 +56,6 @@ vim.schedule(function() vim.cmd("silent! rsh") end) - -- Load/reload modules local modules = { "user.pack", -- Packer plugin manager @@ -98,17 +96,15 @@ local modules = { --"plugins.modify-blend", } - -- Refresh module cache for k, v in pairs(modules) do package.loaded[v] = nil require(v) end - -- Check if we have the latest stable version of nvim local mods = require("user.mods") -local expected_ver = "0.9.0" +local expected_ver = "0.10.0" local nvim_ver = mods.get_nvim_version() if nvim_ver ~= expected_ver then @@ -117,7 +113,6 @@ if nvim_ver ~= expected_ver then return end - -- Snippets vim.g.snippets = "luasnip" |
