From dd6cbbf60ea41d742dea5453009ef54f0d880b2d Mon Sep 17 00:00:00 2001 From: Armaan Bhojwani Date: Sun, 21 Nov 2021 20:47:42 -0500 Subject: [PATCH] nvim: speed up --- .config/nvim/init.lua | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua index d85a06a..ffc6359 100644 --- a/.config/nvim/init.lua +++ b/.config/nvim/init.lua @@ -19,15 +19,19 @@ if vim.fn.empty(vim.fn.glob(install_path)) > 0 then 'https://github.com/savq/paq-nvim.git', install_path}) end +require('impatient') + require('paq') { - 'ap/vim-css-color'; -- Highlight css colors 'ctrlpvim/ctrlp.vim'; -- Fuzzy file finding 'editorconfig/editorconfig-vim'; -- Follow editorconfig 'folke/lsp-colors.nvim'; -- Add LSP colors to any theme 'godlygeek/tabular'; -- Line things up + 'lewis6991/impatient.nvim'; -- Improve startup time 'lifepillar/vim-mucomplete'; -- Simple autocompletion 'meain/hima-vim'; -- Nice color scheme + 'nathom/filetype.nvim'; -- Faster filetype.vim replacement 'neovim/nvim-lspconfig'; -- LSP configurations + 'norcalli/nvim-colorizer.lua'; -- Highlight css colors 'ntpeters/vim-better-whitespace'; -- Highlight and strip whitespace 'savq/paq-nvim'; -- paq manages itself 'sheerun/vim-polyglot'; -- Language pack @@ -102,3 +106,6 @@ vim.opt.signcolumn = 'no' -- Jump to files with gf vim.opt.hidden = true vim.opt.path = vim.opt.path + '**' + +-- Disable intro message +vim.opt.shortmess = "I" -- 2.39.2