Updated scripts

This commit is contained in:
2024-09-28 15:14:34 +02:00
parent c21c706d3e
commit c100c12d7a
3 changed files with 41 additions and 50 deletions

View File

@@ -473,24 +473,24 @@ require('lazy').setup({
},
},
{
'akinsho/toggleterm.nvim',
version = "*",
config = function()
require("toggleterm").setup {
open_mapping = [[<c-t>]],
shade_terminals = false,
highlights = {
Normal = {
guibg = "#262626",
},
NormalNC = {
guibg = "#262626",
},
},
}
end,
},
-- {
-- 'akinsho/toggleterm.nvim',
-- version = "*",
-- config = function()
-- require("toggleterm").setup {
-- open_mapping = [[<c-t>]],
-- shade_terminals = false,
-- highlights = {
-- Normal = {
-- guibg = "#262626",
-- },
-- NormalNC = {
-- guibg = "#262626",
-- },
-- },
-- }
-- end,
-- },
{
"folke/todo-comments.nvim",
@@ -772,7 +772,7 @@ cmp.setup.cmdline(':', {
-- [[ Configure Treesitter ]]
require('nvim-treesitter.configs').setup {
-- Add languages to be installed here that you want installed for treesitter
ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'tsx', 'typescript', 'vimdoc', 'vim' },
ensure_installed = { 'markdown', 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'tsx', 'typescript', 'vimdoc', 'vim' },
-- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!)
auto_install = false,