diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-09-12 23:35:19 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-09-12 23:35:19 +0200 |
commit | dcc38607f207af8e2c0cebe36e49018929057f1b (patch) | |
tree | 1847bda82ae7e247b371ca933aaf39fd134c315e /.config/nvim/lua/mango/packer.lua | |
parent | ed82e4042b8bfc472a0796dedec1a9369e411cb8 (diff) |
nvim: Format all the code with the lua LSP
Diffstat (limited to '.config/nvim/lua/mango/packer.lua')
-rw-r--r-- | .config/nvim/lua/mango/packer.lua | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/.config/nvim/lua/mango/packer.lua b/.config/nvim/lua/mango/packer.lua index ae250e7..ac0af6c 100644 --- a/.config/nvim/lua/mango/packer.lua +++ b/.config/nvim/lua/mango/packer.lua @@ -6,7 +6,7 @@ return require('packer').startup(function(use) use { 'nvim-telescope/telescope.nvim', tag = '0.1.2', - requires = { {'nvim-lua/plenary.nvim'} } + requires = { { 'nvim-lua/plenary.nvim' } } } use { @@ -17,7 +17,7 @@ return require('packer').startup(function(use) end } - use('nvim-treesitter/nvim-treesitter', {run = ':TSUpdate'}) + use('nvim-treesitter/nvim-treesitter', { run = ':TSUpdate' }) use 'mbbill/undotree' use 'tpope/vim-fugitive' @@ -26,14 +26,14 @@ return require('packer').startup(function(use) branch = 'v2.x', requires = { -- LSP Support - {'neovim/nvim-lspconfig'}, - {'williamboman/mason.nvim'}, - {'williamboman/mason-lspconfig.nvim'}, + { 'neovim/nvim-lspconfig' }, + { 'williamboman/mason.nvim' }, + { 'williamboman/mason-lspconfig.nvim' }, -- Autocompletion - {'hrsh7th/nvim-cmp'}, - {'hrsh7th/cmp-nvim-lsp'}, - {'L3MON4D3/LuaSnip'}, + { 'hrsh7th/nvim-cmp' }, + { 'hrsh7th/cmp-nvim-lsp' }, + { 'L3MON4D3/LuaSnip' }, } } end) |