minor style tweaks

This commit is contained in:
Michael Peters 2022-02-28 08:56:43 -06:00
parent 1f81bc57df
commit 259139cf7e

View File

@ -72,15 +72,15 @@ packer.startup {
use { use {
'nvim-treesitter/nvim-treesitter', 'nvim-treesitter/nvim-treesitter',
run = ':TSUpdate', run = ':TSUpdate',
event= 'BufRead', event = 'BufRead',
config = function() require'configs.treesitter'.config() end config = function() require'configs.treesitter'.config() end
} }
-- Auto-close tags -- Auto-close tags
use { 'windwp/nvim-ts-autotag', after='nvim-treesitter' } use { 'windwp/nvim-ts-autotag', after = 'nvim-treesitter' }
-- Context-based auto commenting -- Context-based auto commenting
use { 'JoosepAlviste/nvim-ts-context-commentstring', after='nvim-treesitter' } use { 'JoosepAlviste/nvim-ts-context-commentstring', after = 'nvim-treesitter' }
-- --
-- LSP -- LSP