update style

This commit is contained in:
Hörmet Yiltiz 2023-12-21 16:39:03 -05:00
parent fbcbbda4f0
commit 629994d2b4
1 changed files with 6 additions and 4 deletions

View File

@ -113,7 +113,7 @@ require('lazy').setup({
}, },
-- Useful plugin to show you pending keybinds. -- Useful plugin to show you pending keybinds.
{ 'folke/which-key.nvim', opts = {} }, { 'folke/which-key.nvim', opts = {} },
{ {
-- Adds git related signs to the gutter, as well as utilities for managing changes -- Adds git related signs to the gutter, as well as utilities for managing changes
'lewis6991/gitsigns.nvim', 'lewis6991/gitsigns.nvim',
@ -423,9 +423,11 @@ vim.keymap.set('n', '<leader>sr', require('telescope.builtin').resume, { desc =
vim.defer_fn(function() vim.defer_fn(function()
require('nvim-treesitter.configs').setup { require('nvim-treesitter.configs').setup {
-- Add languages to be installed here that you want installed for treesitter -- Add languages to be installed here that you want installed for treesitter
ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', ensure_installed = {
'rust', 'tsx', 'javascript', 'typescript', 'c', 'cpp', 'go', 'lua', 'python', 'rust',
'vimdoc', 'vim', 'bash' }, 'tsx', 'javascript', 'typescript',
'vimdoc', 'vim', 'bash'
},
-- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!) -- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!)
auto_install = false, auto_install = false,