From 5c8a0710bd48c3559187ea2d3b01d30e4db72ec1 Mon Sep 17 00:00:00 2001 From: Kevin James Lausen Date: Tue, 7 Jun 2022 07:09:46 -0400 Subject: [PATCH] merged settings, so I could merge --- lua/user/options.lua | 1 + plugin/packer_compiled.lua | 122 +++++++++++++++++++++++++++++++++++++ 2 files changed, 123 insertions(+) create mode 100644 plugin/packer_compiled.lua diff --git a/lua/user/options.lua b/lua/user/options.lua index e66fa56..c74e412 100644 --- a/lua/user/options.lua +++ b/lua/user/options.lua @@ -39,6 +39,7 @@ local options = { incsearch = true, -- Turn on incremental search highlighting. ignorecase = true, -- Ignore case in search patterns. smartcase = false, -- Overides ignore case, w/ capitals. Default = false. + hidden = true, -- Saves all buffers before an exit. if hidden biffers exist. } -- A lua for-loop to loop through the above table of options. -- A table is a list, that is allowed key, value pairs. diff --git a/plugin/packer_compiled.lua b/plugin/packer_compiled.lua new file mode 100644 index 0000000..ae3f404 --- /dev/null +++ b/plugin/packer_compiled.lua @@ -0,0 +1,122 @@ +-- Automatically generated packer.nvim plugin loader code + +if vim.api.nvim_call_function('has', {'nvim-0.5'}) ~= 1 then + vim.api.nvim_command('echohl WarningMsg | echom "Invalid Neovim version for packer.nvim! | echohl None"') + return +end + +vim.api.nvim_command('packadd packer.nvim') + +local no_errors, error_msg = pcall(function() + + local time + local profile_info + local should_profile = false + if should_profile then + local hrtime = vim.loop.hrtime + profile_info = {} + time = function(chunk, start) + if start then + profile_info[chunk] = hrtime() + else + profile_info[chunk] = (hrtime() - profile_info[chunk]) / 1e6 + end + end + else + time = function(chunk, start) end + end + +local function save_profiles(threshold) + local sorted_times = {} + for chunk_name, time_taken in pairs(profile_info) do + sorted_times[#sorted_times + 1] = {chunk_name, time_taken} + end + table.sort(sorted_times, function(a, b) return a[2] > b[2] end) + local results = {} + for i, elem in ipairs(sorted_times) do + if not threshold or threshold and elem[2] > threshold then + results[i] = elem[1] .. ' took ' .. elem[2] .. 'ms' + end + end + + _G._packer = _G._packer or {} + _G._packer.profile_output = results +end + +time([[Luarocks path setup]], true) +local package_path_str = "/home/zim/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/?.lua;/home/zim/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/?/init.lua;/home/zim/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/?.lua;/home/zim/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/?/init.lua" +local install_cpath_pattern = "/home/zim/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/?.so" +if not string.find(package.path, package_path_str, 1, true) then + package.path = package.path .. ';' .. package_path_str +end + +if not string.find(package.cpath, install_cpath_pattern, 1, true) then + package.cpath = package.cpath .. ';' .. install_cpath_pattern +end + +time([[Luarocks path setup]], false) +time([[try_loadstring definition]], true) +local function try_loadstring(s, component, name) + local success, result = pcall(loadstring(s), name, _G.packer_plugins[name]) + if not success then + vim.schedule(function() + vim.api.nvim_notify('packer.nvim: Error running ' .. component .. ' for ' .. name .. ': ' .. result, vim.log.levels.ERROR, {}) + end) + end + return result +end + +time([[try_loadstring definition]], false) +time([[Defining packer_plugins]], true) +_G.packer_plugins = { + ["awesome-vim-colorschemes"] = { + loaded = true, + path = "/home/zim/.local/share/nvim/site/pack/packer/start/awesome-vim-colorschemes", + url = "https://github.com/rafi/awesome-vim-colorschemes" + }, + indentline = { + loaded = true, + path = "/home/zim/.local/share/nvim/site/pack/packer/start/indentline", + url = "https://github.com/yggdroot/indentline" + }, + ["packer.nvim"] = { + loaded = true, + path = "/home/zim/.local/share/nvim/site/pack/packer/start/packer.nvim", + url = "https://github.com/wbthomason/packer.nvim" + }, + ["plenary.nvim"] = { + loaded = true, + path = "/home/zim/.local/share/nvim/site/pack/packer/start/plenary.nvim", + url = "https://github.com/nvim-lua/plenary.nvim" + }, + ["popup.nvim"] = { + loaded = true, + path = "/home/zim/.local/share/nvim/site/pack/packer/start/popup.nvim", + url = "https://github.com/nvim-lua/popup.nvim" + }, + ["vim-airline"] = { + loaded = true, + path = "/home/zim/.local/share/nvim/site/pack/packer/start/vim-airline", + url = "https://github.com/vim-airline/vim-airline" + }, + ["vim-devicons"] = { + loaded = true, + path = "/home/zim/.local/share/nvim/site/pack/packer/start/vim-devicons", + url = "https://github.com/ryanoasis/vim-devicons" + }, + ["vim-startify"] = { + loaded = true, + path = "/home/zim/.local/share/nvim/site/pack/packer/start/vim-startify", + url = "https://github.com/mhinz/vim-startify" + } +} + +time([[Defining packer_plugins]], false) +if should_profile then save_profiles() end + +end) + +if not no_errors then + error_msg = error_msg:gsub('"', '\\"') + vim.api.nvim_command('echohl ErrorMsg | echom "Error in packer_compiled: '..error_msg..'" | echom "Please check your config for correctness" | echohl None') +end