mirror of
				https://github.com/tiyn/dotfiles.git
				synced 2025-11-04 06:21:16 +01:00 
			
		
		
		
	nvim: cleaned up configs
This commit is contained in:
		@@ -13,6 +13,15 @@ end
 | 
			
		||||
vim.opt.rtp:prepend(lazypath)
 | 
			
		||||
 | 
			
		||||
return require("lazy").setup({
 | 
			
		||||
    -- colorscheme
 | 
			
		||||
    {
 | 
			
		||||
      'tiyn/tccs.nvim',
 | 
			
		||||
      config = function()
 | 
			
		||||
        require('tccs').setup()
 | 
			
		||||
        vim.cmd('colorscheme tccs')
 | 
			
		||||
      end
 | 
			
		||||
    },
 | 
			
		||||
 | 
			
		||||
    -- display git status per line
 | 
			
		||||
    {
 | 
			
		||||
      'lewis6991/gitsigns.nvim',
 | 
			
		||||
@@ -320,8 +329,11 @@ return require("lazy").setup({
 | 
			
		||||
      dependencies = {
 | 
			
		||||
        -- automatically close html-tags
 | 
			
		||||
        'windwp/nvim-ts-autotag',
 | 
			
		||||
        -- color brackets
 | 
			
		||||
        'p00f/nvim-ts-rainbow',
 | 
			
		||||
      },
 | 
			
		||||
      opts = {
 | 
			
		||||
      config = function()
 | 
			
		||||
        require("nvim-treesitter").setup({
 | 
			
		||||
          ensure_installed = {
 | 
			
		||||
            "bash",
 | 
			
		||||
            "c",
 | 
			
		||||
@@ -333,8 +345,18 @@ return require("lazy").setup({
 | 
			
		||||
            "latex",
 | 
			
		||||
            "python",
 | 
			
		||||
          },
 | 
			
		||||
        autotag = { enable = true }
 | 
			
		||||
          autotag = { enable = true },
 | 
			
		||||
        })
 | 
			
		||||
        require("nvim-treesitter.configs").setup({
 | 
			
		||||
          rainbow = {
 | 
			
		||||
            enable = true,
 | 
			
		||||
            extended_mode = true,
 | 
			
		||||
            max_file_lines = nil,
 | 
			
		||||
            -- colors = {},
 | 
			
		||||
            -- termcolors = {}
 | 
			
		||||
          }
 | 
			
		||||
        })
 | 
			
		||||
      end
 | 
			
		||||
    },
 | 
			
		||||
 | 
			
		||||
    -- folding improvements
 | 
			
		||||
@@ -418,15 +440,6 @@ return require("lazy").setup({
 | 
			
		||||
      end
 | 
			
		||||
    },
 | 
			
		||||
 | 
			
		||||
    -- colorscheme
 | 
			
		||||
    {
 | 
			
		||||
      'tiyn/tccs.nvim',
 | 
			
		||||
      config = function()
 | 
			
		||||
        require('tccs').setup()
 | 
			
		||||
        require('tccs').load()
 | 
			
		||||
      end
 | 
			
		||||
    },
 | 
			
		||||
 | 
			
		||||
    -- improved wild menu
 | 
			
		||||
    {
 | 
			
		||||
      'gelguy/wilder.nvim',
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user