Neovim configs for 2023. Hopefully they last.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1.5 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. vim.cmd [[packadd packer.nvim]]
  2. return require('packer').startup(function(use)
  3. -- Packer can manage itself
  4. use 'wbthomason/packer.nvim'
  5. use 'tpope/vim-sensible'
  6. use {
  7. 'nvim-telescope/telescope.nvim', tag = '0.1.1',
  8. requires = { { 'nvim-lua/plenary.nvim' } }
  9. }
  10. use 'Townk/vim-autoclose'
  11. use {
  12. 'joshdick/onedark.vim', config = function()
  13. vim.cmd("colorscheme onedark")
  14. end
  15. }
  16. use(
  17. 'nvim-treesitter/nvim-treesitter', { run = ':TSUpdate' }
  18. )
  19. use 'nvim-tree/nvim-web-devicons'
  20. use { 'romgrk/barbar.nvim', wants = 'nvim-web-devicons' }
  21. use 'vim-airline/vim-airline'
  22. use 'vim-airline/vim-airline-themes'
  23. use {
  24. 'VonHeikemen/lsp-zero.nvim',
  25. branch = 'v1.x',
  26. requires = {
  27. -- LSP Support
  28. { 'neovim/nvim-lspconfig' }, -- Required
  29. { 'williamboman/mason.nvim' }, -- Optional
  30. { 'williamboman/mason-lspconfig.nvim' }, -- Optional
  31. -- Autocompletion
  32. { 'hrsh7th/nvim-cmp' }, -- Required
  33. { 'hrsh7th/cmp-nvim-lsp' }, -- Required
  34. { 'hrsh7th/cmp-buffer' }, -- Optional
  35. { 'hrsh7th/cmp-path' }, -- Optional
  36. { 'saadparwaiz1/cmp_luasnip' }, -- Optional
  37. { 'hrsh7th/cmp-nvim-lua' }, -- Optional
  38. -- Snippets
  39. { 'L3MON4D3/LuaSnip' }, -- Required
  40. { 'rafamadriz/friendly-snippets' }, -- Optional
  41. }
  42. }
  43. use 'mattn/emmet-vim'
  44. use 'lervag/vimtex'
  45. use {
  46. 'nvim-tree/nvim-tree.lua',
  47. requires = {
  48. 'nvim-tree/nvim-web-devicons', -- optional, for file icons
  49. },
  50. tag = 'nightly' -- optional, updated every week. (see issue #1193)
  51. }
  52. end)