formatting
This commit is contained in:
		@@ -1,17 +1,17 @@
 | 
				
			|||||||
return {
 | 
					return {
 | 
				
			||||||
	"rebelot/kanagawa.nvim", 
 | 
					  "rebelot/kanagawa.nvim", 
 | 
				
			||||||
	config = function()
 | 
					  config = function()
 | 
				
			||||||
		require('kanagawa').setup({
 | 
					    require('kanagawa').setup({
 | 
				
			||||||
			compile=true,
 | 
					      compile=true,
 | 
				
			||||||
			transparent=true,
 | 
					      transparent=true,
 | 
				
			||||||
			background = {
 | 
					      background = {
 | 
				
			||||||
        			dark = "wave",
 | 
					        dark = "wave",
 | 
				
			||||||
        			light = "lotus"
 | 
					        light = "lotus"
 | 
				
			||||||
    },
 | 
					      },
 | 
				
			||||||
		});
 | 
					    });
 | 
				
			||||||
		vim.cmd("colorscheme kanagawa");
 | 
					    vim.cmd("colorscheme kanagawa");
 | 
				
			||||||
	end,
 | 
					  end,
 | 
				
			||||||
	build = function()
 | 
					  build = function()
 | 
				
			||||||
		vim.cmd("KanagawaCompile");
 | 
					    vim.cmd("KanagawaCompile");
 | 
				
			||||||
	end,
 | 
					  end,
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,23 +1,23 @@
 | 
				
			|||||||
return {
 | 
					return {
 | 
				
			||||||
    "nvim-treesitter/nvim-treesitter",
 | 
					  "nvim-treesitter/nvim-treesitter",
 | 
				
			||||||
    build = ":TSUpdate",
 | 
					  build = ":TSUpdate",
 | 
				
			||||||
    config = function () 
 | 
					  config = function () 
 | 
				
			||||||
    local configs = require("nvim-treesitter.configs")
 | 
					    local configs = require("nvim-treesitter.configs")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        configs.setup({
 | 
					    configs.setup({
 | 
				
			||||||
            ensure_installed = "all",
 | 
					      ensure_installed = "all",
 | 
				
			||||||
            sync_install = false,
 | 
					      sync_install = false,
 | 
				
			||||||
            highlight = { enable = true },
 | 
					      highlight = { enable = true },
 | 
				
			||||||
            indent = { enable = true },
 | 
					      indent = { enable = true },
 | 
				
			||||||
            incremental_selection = {
 | 
					      incremental_selection = {
 | 
				
			||||||
                enable = true,
 | 
					        enable = true,
 | 
				
			||||||
                keymaps = {
 | 
					        keymaps = {
 | 
				
			||||||
                    init_selection = "<Enter>",
 | 
					          init_selection = "<Enter>",
 | 
				
			||||||
                    node_incremental = "<Enter>",
 | 
					          node_incremental = "<Enter>",
 | 
				
			||||||
                    scope_incremental = false,
 | 
					          scope_incremental = false,
 | 
				
			||||||
                    node_decremental = "<Backspace>" 
 | 
					          node_decremental = "<Backspace>" 
 | 
				
			||||||
                }, 
 | 
					        }, 
 | 
				
			||||||
            } 
 | 
					      } 
 | 
				
			||||||
        }) 
 | 
					    }) 
 | 
				
			||||||
    end 
 | 
					  end 
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1 +1,5 @@
 | 
				
			|||||||
return { "echasnovski/mini.statusline", version = false, opts = {} }
 | 
					return { 
 | 
				
			||||||
 | 
						"echasnovski/mini.statusline", 
 | 
				
			||||||
 | 
						version = false, 
 | 
				
			||||||
 | 
						opts = {}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user