local plugins = { -- {{{ lsp -- {{{ basic lsp stuff { "neovim/nvim-lspconfig", }, -- }}} -- }}} -- {{{ editor -- {{{ prints possible shortcuts upon button press { "folke/which-key.nvim", event = "VeryLazy", init = function() vim.o.timeout = true vim.o.timeoutlen = 0 require("which-key").setup(opts) end }, -- }}} -- {{{ auto closes () -- { -- "windwp/nvim-autopairs", -- event = "InsertEnter", -- opts = { -- fast_wrap = {}, -- disable_filetype = { "TelescopePrompt", "vim" }, -- }, -- config = function(_, opts) -- require("nvim-autopairs").setup(opts) -- end, -- }, -- }}} -- }}} -- {{{ ui --better borders for split screen { "nvim-zh/colorful-winsep.nvim", event = "WinNew", config = function () require('colorful-winsep').setup() end }, -- }}} -- {{{ misc { "lervag/vimtex", ft = "tex", }, -- }}} } plugins.lazy = true require("lazy").setup(plugins)