diff options
| author | Vito G. Graffagnino <vito@graffagnino.xyz> | 2022-08-11 15:34:07 +0100 |
|---|---|---|
| committer | Vito G. Graffagnino <vito@graffagnino.xyz> | 2022-08-11 15:34:07 +0100 |
| commit | f3403c95fca6779a766763b040b7ae9650f39c33 (patch) | |
| tree | e12957d1209c23182c9a1b33e64b2a041f578924 /lua/user/plugins.lua | |
| parent | adb901bb02e1b205731156976b4ea6d765b24432 (diff) | |
Mainly LSP changes, especially concerning latex. Changed from ltex to texlab
Diffstat (limited to 'lua/user/plugins.lua')
| -rw-r--r-- | lua/user/plugins.lua | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/lua/user/plugins.lua b/lua/user/plugins.lua index 29e5dfa..af30bf5 100644 --- a/lua/user/plugins.lua +++ b/lua/user/plugins.lua @@ -58,12 +58,28 @@ return packer.startup(function(use) use {"windwp/nvim-autopairs", commit = ""} -- Autopairs, integrates with both cmp and treesitter use {"vimwiki/vimwiki", commit = ""} use {"zane-/howdoi.nvim", commit = ""} - use {'nvim-orgmode/orgmode'} -- Colorschemes use {"lunarvim/colorschemes", commit = ""} -- A bunch of colorschemes you can try out use {"lunarvim/darkplus.nvim", commit = ""} use {"tiagovla/tokyodark.nvim", commit = ""} + use({ "lilydjwg/colorizer" }) + use({ "nekonako/xresources-nvim" }) + use({ "EdenEast/nightfox.nvim" }) + use({ "dylanaraps/wal.vim" }) + use({ "tomasiser/vim-code-dark" }) + use({ "AlphaTechnolog/pywal.nvim" }) + use({ "lighthaus-theme/vim-lighthaus" }) + use({ "jacoborus/tender.vim" }) + use({ "mcchrish/zenbones.nvim" }) + use({ "rmehri01/onenord.nvim" }) + use({ "Shatur/neovim-ayu" }) + use({ "rafamadriz/neon" }) + use({ "luisiacc/gruvbox-baby" }) + use({ "folke/tokyonight.nvim" }) + use({ "chriskempson/base16-vim" }) + use({ "flazz/vim-colorschemes" }) + use({ "rose-pine/neovim" }) -- cmp plugins use {"hrsh7th/nvim-cmp", commit = ""} -- The completion plugin @@ -88,6 +104,8 @@ return packer.startup(function(use) -- Telescope use {"nvim-telescope/telescope.nvim", commit = ""} use {"nvim-telescope/telescope-media-files.nvim", commit = ""} + use {"nvim-telescope/telescope-bibtex.nvim", commit = ""} + use {"nvim-telescope/telescope-dap.nvim", commit = ""} -- Treesitter use { @@ -103,6 +121,10 @@ return packer.startup(function(use) use {"p00f/nvim-ts-rainbow", commit = ""} use {"nvim-treesitter/playground", commit = ""} + -- Tex + -- use {"lervag/vimtex", commit = ""} + use {"f3fora/nvim-texlabconfig", commit = "", run ="go build"} + -- DAP use {"mfussenegger/nvim-dap", commit = ""} use {"mfussenegger/nvim-dap-python", commit = ""} |
