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.

61 lines
1.6 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
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 {
  22. 'nvim-lualine/lualine.nvim',
  23. requires = { 'kyazdani42/nvim-web-devicons', opt = true }
  24. }
  25. use 'vim-airline/vim-airline-themes'
  26. use 'tpope/vim-fugitive'
  27. use {
  28. 'VonHeikemen/lsp-zero.nvim',
  29. branch = 'v1.x',
  30. requires = {
  31. -- LSP Support
  32. { 'neovim/nvim-lspconfig' }, -- Required
  33. { 'williamboman/mason.nvim' }, -- Optional
  34. { 'williamboman/mason-lspconfig.nvim' }, -- Optional
  35. -- Autocompletion
  36. { 'hrsh7th/nvim-cmp' }, -- Required
  37. { 'hrsh7th/cmp-nvim-lsp' }, -- Required
  38. { 'hrsh7th/cmp-buffer' }, -- Optional
  39. { 'hrsh7th/cmp-path' }, -- Optional
  40. { 'saadparwaiz1/cmp_luasnip' }, -- Optional
  41. { 'hrsh7th/cmp-nvim-lua' }, -- Optional
  42. -- Snippets
  43. { 'L3MON4D3/LuaSnip' }, -- Required
  44. { 'rafamadriz/friendly-snippets' }, -- Optional
  45. }
  46. }
  47. use 'mattn/emmet-vim'
  48. use 'lervag/vimtex'
  49. use {
  50. 'nvim-tree/nvim-tree.lua',
  51. requires = {
  52. 'nvim-tree/nvim-web-devicons', -- optional, for file icons
  53. },
  54. tag = 'nightly' -- optional, updated every week. (see issue #1193)
  55. }
  56. end)