formatting changes for vim config,
added nvimdiff as default difftool for git.
This commit is contained in:
		
							parent
							
								
									18eb063667
								
							
						
					
					
						commit
						8a08599322
					
				
					 2 changed files with 360 additions and 320 deletions
				
			
		| 
						 | 
				
			
			@ -8,3 +8,9 @@
 | 
			
		|||
	defaultBranch = trunk
 | 
			
		||||
[push]
 | 
			
		||||
	autoSetupRemote = true
 | 
			
		||||
[difftool]
 | 
			
		||||
	prompt = false
 | 
			
		||||
[diff]
 | 
			
		||||
    tool = nvimdiff
 | 
			
		||||
[difftool "nvimdiff"]
 | 
			
		||||
    cmd = "nvim -d \"$LOCAL\" \"$REMOTE\""
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,12 +1,12 @@
 | 
			
		|||
-- bootstrapping packer
 | 
			
		||||
local fn=vim.fn
 | 
			
		||||
local install_path = fn.stdpath('data')..'/site/pack/packer/start/packer.nvim'
 | 
			
		||||
local fn = vim.fn
 | 
			
		||||
local install_path = fn.stdpath('data') .. '/site/pack/packer/start/packer.nvim'
 | 
			
		||||
if fn.empty(fn.glob(install_path)) > 0 then
 | 
			
		||||
	Packer_Bootstrap = fn.system({'git', 'clone', '--depth', '1', 'https://github.com/wbthomason/packer.nvim', install_path})
 | 
			
		||||
	Packer_Bootstrap = fn.system({ 'git', 'clone', '--depth', '1', 'https://github.com/wbthomason/packer.nvim',
 | 
			
		||||
		install_path })
 | 
			
		||||
end
 | 
			
		||||
 | 
			
		||||
return require('packer').startup(function(use)
 | 
			
		||||
 | 
			
		||||
	--startup speed
 | 
			
		||||
	use 'lewis6991/impatient.nvim'
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -16,12 +16,38 @@ return require('packer').startup(function(use)
 | 
			
		|||
 | 
			
		||||
	use { 'nvim-treesitter/nvim-treesitter',
 | 
			
		||||
		run = ':TSUpdate',
 | 
			
		||||
		config=function() require('nvim-treesitter').setup{
 | 
			
		||||
			ensure_installed='maintained',
 | 
			
		||||
			highlight={enable=true},
 | 
			
		||||
			indent={enable=true},
 | 
			
		||||
			incremental_selection={enable=true}
 | 
			
		||||
		}end,
 | 
			
		||||
		config = function()
 | 
			
		||||
			require('nvim-treesitter').setup {
 | 
			
		||||
				ensure_installed = {
 | 
			
		||||
					'c',
 | 
			
		||||
					'lua',
 | 
			
		||||
					'vim',
 | 
			
		||||
					'vimdoc',
 | 
			
		||||
					'query',
 | 
			
		||||
					'bash',
 | 
			
		||||
					'comment',
 | 
			
		||||
					'cpp',
 | 
			
		||||
					'diff',
 | 
			
		||||
					'git_config',
 | 
			
		||||
					'git_rebase',
 | 
			
		||||
					'gitattributes',
 | 
			
		||||
					'gitcommit',
 | 
			
		||||
					'gitignore',
 | 
			
		||||
					'json',
 | 
			
		||||
					'jsonc',
 | 
			
		||||
					'latex',
 | 
			
		||||
					'make',
 | 
			
		||||
					'python',
 | 
			
		||||
					'regex',
 | 
			
		||||
					'rust',
 | 
			
		||||
					'toml',
 | 
			
		||||
				},
 | 
			
		||||
				auto_install = true,
 | 
			
		||||
				highlight = { enable = true },
 | 
			
		||||
				indent = { enable = true },
 | 
			
		||||
				incremental_selection = { enable = true }
 | 
			
		||||
			}
 | 
			
		||||
		end,
 | 
			
		||||
	}
 | 
			
		||||
	use {
 | 
			
		||||
		{
 | 
			
		||||
| 
						 | 
				
			
			@ -51,22 +77,22 @@ return require('packer').startup(function(use)
 | 
			
		|||
						'texlab',
 | 
			
		||||
						'clangd',
 | 
			
		||||
					},
 | 
			
		||||
					automatic_installation=true
 | 
			
		||||
					automatic_installation = true
 | 
			
		||||
				})
 | 
			
		||||
			end
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
			"neovim/nvim-lspconfig",
 | 
			
		||||
			after = {"mason-lspconfig.nvim", "rust-tools.nvim"},
 | 
			
		||||
			after = { "mason-lspconfig.nvim", "rust-tools.nvim" },
 | 
			
		||||
			config = function()
 | 
			
		||||
				require('LSPconfig')
 | 
			
		||||
			end
 | 
			
		||||
		},
 | 
			
		||||
		{'simrat39/rust-tools.nvim',},
 | 
			
		||||
		{'mfussenegger/nvim-jdtls',},
 | 
			
		||||
		{ 'simrat39/rust-tools.nvim', },
 | 
			
		||||
		{ 'mfussenegger/nvim-jdtls', },
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	use {'hrsh7th/nvim-cmp',
 | 
			
		||||
	use { 'hrsh7th/nvim-cmp',
 | 
			
		||||
		requires = {
 | 
			
		||||
			'neovim/nvim-lspconfig',
 | 
			
		||||
			'hrsh7th/cmp-nvim-lsp',
 | 
			
		||||
| 
						 | 
				
			
			@ -88,24 +114,24 @@ return require('packer').startup(function(use)
 | 
			
		|||
		end
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	use {'L3MON4D3/LuaSnip',
 | 
			
		||||
		requires={
 | 
			
		||||
	use { 'L3MON4D3/LuaSnip',
 | 
			
		||||
		requires = {
 | 
			
		||||
			'rafamadriz/friendly-snippets'
 | 
			
		||||
		},
 | 
			
		||||
		config=function()
 | 
			
		||||
		config = function()
 | 
			
		||||
			require("luasnip.loaders.from_snipmate").load()
 | 
			
		||||
			require("luasnip.loaders.from_vscode").load()
 | 
			
		||||
		end
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	use {'nvim-telescope/telescope.nvim',
 | 
			
		||||
	use { 'nvim-telescope/telescope.nvim',
 | 
			
		||||
		requires = {
 | 
			
		||||
			{'nvim-lua/plenary.nvim'},
 | 
			
		||||
			{'nvim-lua/popup.nvim'},
 | 
			
		||||
			{'nvim-treesitter/nvim-treesitter'},
 | 
			
		||||
			{'nvim-telescope/telescope-symbols.nvim'},
 | 
			
		||||
			{'nvim-telescope/telescope-file-browser.nvim'},
 | 
			
		||||
			{'folke/trouble.nvim'},
 | 
			
		||||
			{ 'nvim-lua/plenary.nvim' },
 | 
			
		||||
			{ 'nvim-lua/popup.nvim' },
 | 
			
		||||
			{ 'nvim-treesitter/nvim-treesitter' },
 | 
			
		||||
			{ 'nvim-telescope/telescope-symbols.nvim' },
 | 
			
		||||
			{ 'nvim-telescope/telescope-file-browser.nvim' },
 | 
			
		||||
			{ 'folke/trouble.nvim' },
 | 
			
		||||
		},
 | 
			
		||||
		config = function()
 | 
			
		||||
			local trouble = require("trouble.providers.telescope")
 | 
			
		||||
| 
						 | 
				
			
			@ -121,17 +147,19 @@ return require('packer').startup(function(use)
 | 
			
		|||
	}
 | 
			
		||||
 | 
			
		||||
	--file browser
 | 
			
		||||
	use {'kyazdani42/nvim-tree.lua',
 | 
			
		||||
	use { 'kyazdani42/nvim-tree.lua',
 | 
			
		||||
		requires = {
 | 
			
		||||
			'kyazdani42/nvim-web-devicons', -- optional, for file icon
 | 
			
		||||
		},
 | 
			
		||||
		config = function() require'nvim-tree'.setup {
 | 
			
		||||
		config = function()
 | 
			
		||||
			require 'nvim-tree'.setup {
 | 
			
		||||
 | 
			
		||||
				on_attach = function(bufnr)
 | 
			
		||||
					local api = require('nvim-tree.api')
 | 
			
		||||
 | 
			
		||||
					local function opts(desc)
 | 
			
		||||
					return { desc = 'nvim-tree: ' .. desc, buffer = bufnr, noremap = true, silent = true, nowait = true }
 | 
			
		||||
						return { desc = 'nvim-tree: ' .. desc, buffer = bufnr, noremap = true, silent = true,
 | 
			
		||||
							nowait = true }
 | 
			
		||||
					end
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -234,16 +262,16 @@ return require('packer').startup(function(use)
 | 
			
		|||
					vim.keymap.set('n', 'q', api.tree.close, opts('Close'))
 | 
			
		||||
					vim.keymap.set('n', 'g?', api.tree.toggle_help, opts('Help'))
 | 
			
		||||
					vim.keymap.set('n', 'W', api.tree.collapse_all, opts('Collapse'))
 | 
			
		||||
 | 
			
		||||
				end,
 | 
			
		||||
				-- on_attach = on_attach
 | 
			
		||||
		} end
 | 
			
		||||
			}
 | 
			
		||||
		end
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	--UI stuff
 | 
			
		||||
 | 
			
		||||
	use {'simrat39/symbols-outline.nvim',
 | 
			
		||||
	config=function()
 | 
			
		||||
	use { 'simrat39/symbols-outline.nvim',
 | 
			
		||||
		config = function()
 | 
			
		||||
			local opts = {
 | 
			
		||||
				highlight_hovered_item = true,
 | 
			
		||||
				show_guides = true,
 | 
			
		||||
| 
						 | 
				
			
			@ -263,48 +291,50 @@ return require('packer').startup(function(use)
 | 
			
		|||
			}
 | 
			
		||||
			require("symbols-outline").setup(opts)
 | 
			
		||||
		end
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
use {'stevearc/dressing.nvim',
 | 
			
		||||
config=function()
 | 
			
		||||
	require('dressing').setup{}
 | 
			
		||||
end
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	use {'nvim-lualine/lualine.nvim',
 | 
			
		||||
	requires = {'kyazdani42/nvim-web-devicons', opt = true},
 | 
			
		||||
	config=function() require('lualine').setup{
 | 
			
		||||
		options={
 | 
			
		||||
	use { 'stevearc/dressing.nvim',
 | 
			
		||||
		config = function()
 | 
			
		||||
			require('dressing').setup {}
 | 
			
		||||
		end
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	use { 'nvim-lualine/lualine.nvim',
 | 
			
		||||
		requires = { 'kyazdani42/nvim-web-devicons', opt = true },
 | 
			
		||||
		config = function()
 | 
			
		||||
			require('lualine').setup {
 | 
			
		||||
				options = {
 | 
			
		||||
					icons_enabled = true,
 | 
			
		||||
					theme = 'auto',
 | 
			
		||||
			component_separators = { left = '', right = ''},
 | 
			
		||||
			section_separators = { left = '', right = ''},
 | 
			
		||||
					component_separators = { left = '', right = '' },
 | 
			
		||||
					section_separators = { left = '', right = '' },
 | 
			
		||||
					disabled_filetypes = {},
 | 
			
		||||
					always_divide_middle = true,
 | 
			
		||||
				},
 | 
			
		||||
				sections = {
 | 
			
		||||
			lualine_a = {'mode'},
 | 
			
		||||
			lualine_b = {'branch', 'diff', 'diagnostics'},
 | 
			
		||||
			lualine_c = {'filename'},
 | 
			
		||||
			lualine_x = {'encoding', 'fileformat', 'filetype'},
 | 
			
		||||
			lualine_y = {'progress'},
 | 
			
		||||
			lualine_z = {'location'}
 | 
			
		||||
					lualine_a = { 'mode' },
 | 
			
		||||
					lualine_b = { 'branch', 'diff', 'diagnostics' },
 | 
			
		||||
					lualine_c = { 'filename' },
 | 
			
		||||
					lualine_x = { 'encoding', 'fileformat', 'filetype' },
 | 
			
		||||
					lualine_y = { 'progress' },
 | 
			
		||||
					lualine_z = { 'location' }
 | 
			
		||||
				},
 | 
			
		||||
				inactive_sections = {
 | 
			
		||||
					lualine_a = {},
 | 
			
		||||
					lualine_b = {},
 | 
			
		||||
			lualine_c = {'filename'},
 | 
			
		||||
			lualine_x = {'location'},
 | 
			
		||||
					lualine_c = { 'filename' },
 | 
			
		||||
					lualine_x = { 'location' },
 | 
			
		||||
					lualine_y = {},
 | 
			
		||||
					lualine_z = {}
 | 
			
		||||
				},
 | 
			
		||||
				extensions = {}
 | 
			
		||||
	} end,
 | 
			
		||||
}
 | 
			
		||||
			}
 | 
			
		||||
		end,
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
use {'kdheepak/tabline.nvim',
 | 
			
		||||
config = function()
 | 
			
		||||
	require'tabline'.setup {
 | 
			
		||||
	use { 'kdheepak/tabline.nvim',
 | 
			
		||||
		config = function()
 | 
			
		||||
			require 'tabline'.setup {
 | 
			
		||||
				-- Defaults configuration options
 | 
			
		||||
				enable = true,
 | 
			
		||||
				options = {
 | 
			
		||||
| 
						 | 
				
			
			@ -319,17 +349,18 @@ config = function()
 | 
			
		|||
					show_filename_only = false, -- shows base filename only instead of relative path in filename
 | 
			
		||||
				}
 | 
			
		||||
			}
 | 
			
		||||
	vim.cmd[[
 | 
			
		||||
			vim.cmd [[
 | 
			
		||||
	set guioptions-=e " Use showtabline in gui vim
 | 
			
		||||
	set sessionoptions+=tabpages,globals " store tabpages and globals in session
 | 
			
		||||
	]]
 | 
			
		||||
end,
 | 
			
		||||
requires = { { 'hoob3rt/lualine.nvim', opt=true }, {'kyazdani42/nvim-web-devicons', opt = true} }
 | 
			
		||||
		end,
 | 
			
		||||
		requires = { { 'hoob3rt/lualine.nvim', opt = true }, { 'kyazdani42/nvim-web-devicons', opt = true } }
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	use {'folke/trouble.nvim',
 | 
			
		||||
	use { 'folke/trouble.nvim',
 | 
			
		||||
		requires = "kyazdani42/nvim-web-devicons",
 | 
			
		||||
	config = function() require("trouble").setup {
 | 
			
		||||
		config = function()
 | 
			
		||||
			require("trouble").setup {
 | 
			
		||||
				position = "bottom", -- position of the list can be: bottom, top, left, right
 | 
			
		||||
				height = 10,       -- height of the trouble list when position is top or bottom
 | 
			
		||||
				width = 50,        -- width of the list when position is left or right
 | 
			
		||||
| 
						 | 
				
			
			@ -339,24 +370,25 @@ requires = { { 'hoob3rt/lualine.nvim', opt=true }, {'kyazdani42/nvim-web-devicon
 | 
			
		|||
				fold_closed = "", -- icon used for closed folds
 | 
			
		||||
				group = true,      -- group results by file
 | 
			
		||||
				padding = true,    -- add an extra new line on top of the list
 | 
			
		||||
		action_keys = { -- key mappings for actions in the trouble list
 | 
			
		||||
				action_keys = {
 | 
			
		||||
				                   -- key mappings for actions in the trouble list
 | 
			
		||||
					-- map to {} to remove a mapping, for example:
 | 
			
		||||
					-- close = {},
 | 
			
		||||
					close = "q",          -- close the list
 | 
			
		||||
					cancel = "<esc>",     -- cancel the preview and get back to your last window / buffer / cursor
 | 
			
		||||
					refresh = "r",        -- manually refresh
 | 
			
		||||
		jump = {"<cr>", "<tab>"}, -- jump to the diagnostic or open / close folds
 | 
			
		||||
					jump = { "<cr>", "<tab>" }, -- jump to the diagnostic or open / close folds
 | 
			
		||||
					open_split = { "<c-x>" }, -- open buffer in new split
 | 
			
		||||
					open_vsplit = { "<c-v>" }, -- open buffer in new vsplit
 | 
			
		||||
					open_tab = { "<c-t>" }, -- open buffer in new tab
 | 
			
		||||
		jump_close = {"o"}, -- jump to the diagnostic and close the list
 | 
			
		||||
					jump_close = { "o" }, -- jump to the diagnostic and close the list
 | 
			
		||||
					toggle_mode = "m",    -- toggle between "workspace" and "document" diagnostics mode
 | 
			
		||||
					toggle_preview = "P", -- toggle auto_preview
 | 
			
		||||
					hover = "K",          -- opens a small popup with the full multiline message
 | 
			
		||||
					preview = "p",        -- preview the diagnostic location
 | 
			
		||||
		close_folds = {"zM", "zm"}, -- close all folds
 | 
			
		||||
		open_folds = {"zR", "zr"}, -- open all folds
 | 
			
		||||
		toggle_fold = {"zA", "za", '<space>'}, -- toggle fold of current file
 | 
			
		||||
					close_folds = { "zM", "zm" }, -- close all folds
 | 
			
		||||
					open_folds = { "zR", "zr" }, -- open all folds
 | 
			
		||||
					toggle_fold = { "zA", "za", '<space>' }, -- toggle fold of current file
 | 
			
		||||
					previous = "k",       -- previous item
 | 
			
		||||
					next = "j"            -- next item
 | 
			
		||||
				},
 | 
			
		||||
| 
						 | 
				
			
			@ -365,7 +397,7 @@ requires = { { 'hoob3rt/lualine.nvim', opt=true }, {'kyazdani42/nvim-web-devicon
 | 
			
		|||
				auto_close = false,       -- automatically close the list when you have no diagnostics
 | 
			
		||||
				auto_preview = true,      -- automatically preview the location of the diagnostic. <esc> to close preview and go back to last window
 | 
			
		||||
				auto_fold = false,        -- automatically fold a file trouble list at creation
 | 
			
		||||
	auto_jump = {"lsp_definitions"}, -- for the given modes, automatically jump if there is only a single result
 | 
			
		||||
				auto_jump = { "lsp_definitions" }, -- for the given modes, automatically jump if there is only a single result
 | 
			
		||||
				signs = {
 | 
			
		||||
					-- icons / text used for a diagnostic
 | 
			
		||||
					error = "",
 | 
			
		||||
| 
						 | 
				
			
			@ -375,13 +407,14 @@ requires = { { 'hoob3rt/lualine.nvim', opt=true }, {'kyazdani42/nvim-web-devicon
 | 
			
		|||
					other = ""
 | 
			
		||||
				},
 | 
			
		||||
				use_diagnostic_signs = false -- enabling this will use the signs defined in your lsp client
 | 
			
		||||
}
 | 
			
		||||
			}
 | 
			
		||||
		end
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	use {'romgrk/nvim-treesitter-context',
 | 
			
		||||
	use { 'romgrk/nvim-treesitter-context',
 | 
			
		||||
		requires = 'nvim-treesitter/nvim-treesitter',
 | 
			
		||||
	config=function() require('treesitter-context').setup{
 | 
			
		||||
		config = function()
 | 
			
		||||
			require('treesitter-context').setup {
 | 
			
		||||
				enable = true, -- Enable this plugin (Can be enabled/disabled later via commands)
 | 
			
		||||
				max_lines = 0, -- How many lines the window should span. Values <= 0 mean no limit.
 | 
			
		||||
				trim_scope = 'outer', -- Which context lines to discard if `max_lines` is exceeded. Choices: 'inner', 'outer'
 | 
			
		||||
| 
						 | 
				
			
			@ -391,33 +424,34 @@ requires = { { 'hoob3rt/lualine.nvim', opt=true }, {'kyazdani42/nvim-web-devicon
 | 
			
		|||
				-- Separator between context and content. Should be a single character string, like '-'.
 | 
			
		||||
				-- When separator is set, the context will only show up when there are at least 2 lines above cursorline.
 | 
			
		||||
				separator = nil,
 | 
			
		||||
	} end
 | 
			
		||||
}
 | 
			
		||||
			}
 | 
			
		||||
		end
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
use {'lewis6991/gitsigns.nvim',
 | 
			
		||||
-- tag = 'release', -- To use the latest release. currently bugged
 | 
			
		||||
config=function() require('gitsigns').setup() end
 | 
			
		||||
	use { 'lewis6991/gitsigns.nvim',
 | 
			
		||||
		-- tag = 'release', -- To use the latest release. currently bugged
 | 
			
		||||
		config = function() require('gitsigns').setup() end
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	use 'chentau/marks.nvim'
 | 
			
		||||
 | 
			
		||||
	use {'lukas-reineke/indent-blankline.nvim',
 | 
			
		||||
	config=function()
 | 
			
		||||
	use { 'lukas-reineke/indent-blankline.nvim',
 | 
			
		||||
		config = function()
 | 
			
		||||
			vim.opt.list = true
 | 
			
		||||
			vim.opt.listchars:append("eol:↴")
 | 
			
		||||
		require('indent_blankline').setup{
 | 
			
		||||
			show_end_of_line=true,
 | 
			
		||||
			show_current_context=true
 | 
			
		||||
			require('indent_blankline').setup {
 | 
			
		||||
				show_end_of_line = true,
 | 
			
		||||
				show_current_context = true
 | 
			
		||||
			}
 | 
			
		||||
		end
 | 
			
		||||
}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
--editing utilities
 | 
			
		||||
	--editing utilities
 | 
			
		||||
 | 
			
		||||
use {'numToStr/Comment.nvim',
 | 
			
		||||
config = function()
 | 
			
		||||
	use { 'numToStr/Comment.nvim',
 | 
			
		||||
		config = function()
 | 
			
		||||
			require('Comment').setup()
 | 
			
		||||
end
 | 
			
		||||
		end
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	use {
 | 
			
		||||
| 
						 | 
				
			
			@ -437,17 +471,17 @@ end
 | 
			
		|||
				max_join_length = 256,
 | 
			
		||||
			})
 | 
			
		||||
		end,
 | 
			
		||||
}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
use "jbyuki/venn.nvim"
 | 
			
		||||
	use "jbyuki/venn.nvim"
 | 
			
		||||
 | 
			
		||||
--color scheme stuff.
 | 
			
		||||
	--color scheme stuff.
 | 
			
		||||
 | 
			
		||||
use 'bluz71/vim-moonfly-colors'
 | 
			
		||||
	use 'bluz71/vim-moonfly-colors'
 | 
			
		||||
 | 
			
		||||
use 'bluz71/vim-nightfly-guicolors'
 | 
			
		||||
	use 'bluz71/vim-nightfly-guicolors'
 | 
			
		||||
 | 
			
		||||
if Packer_Bootstrap then
 | 
			
		||||
	if Packer_Bootstrap then
 | 
			
		||||
		require('packer').sync()
 | 
			
		||||
end
 | 
			
		||||
	end
 | 
			
		||||
end)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue