Compare commits
	
		
			No commits in common. "eb59ad7abc0e9dee87a70248aeb343fb0fc1b06e" and "bbcc388705a74d0b6c35863783c12d8286984b72" have entirely different histories.
		
	
	
		
			eb59ad7abc
			...
			bbcc388705
		
	
		| 
						 | 
				
			
			@ -2,10 +2,6 @@ vim.opt.termguicolors = true
 | 
			
		|||
vim.opt.encoding = "utf-8"
 | 
			
		||||
vim.opt.autowriteall = true
 | 
			
		||||
 | 
			
		||||
vim.opt.number = true
 | 
			
		||||
 | 
			
		||||
--vim.opt.undodir = "~/.vim/undodir"
 | 
			
		||||
vim.opt.undodir = "~/.vim/undodir"
 | 
			
		||||
vim.opt.undofile = true
 | 
			
		||||
vim.opt.undolevels = 1000
 | 
			
		||||
 | 
			
		||||
vim.opt.updatetime = 500
 | 
			
		||||
| 
						 | 
				
			
			@ -1,4 +1,5 @@
 | 
			
		|||
vim.opt.wrap = true
 | 
			
		||||
vim.opt.linebreak = true
 | 
			
		||||
vim.opt.textwidth = 0 --prevent vim from isnerting linebreaks
 | 
			
		||||
vim.opt.number = false
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -0,0 +1 @@
 | 
			
		|||
return { "RRethy/vim-illuminate" }
 | 
			
		||||
| 
						 | 
				
			
			@ -1,16 +0,0 @@
 | 
			
		|||
return {
 | 
			
		||||
	"tzachar/local-highlight.nvim",
 | 
			
		||||
	config = function()
 | 
			
		||||
		require("local-highlight").setup({
 | 
			
		||||
			--	file_types = { "python", "cpp" }, -- If this is given only attach to this
 | 
			
		||||
			-- OR attach to every filetype except:
 | 
			
		||||
			disable_file_types = { "tex" },
 | 
			
		||||
			--hlgroup = "Search",
 | 
			
		||||
			cw_hlgroup = nil,
 | 
			
		||||
			-- Whether to display highlights in INSERT mode or not
 | 
			
		||||
			insert_mode = false,
 | 
			
		||||
			min_match_len = 1,
 | 
			
		||||
			max_match_len = math.huge,
 | 
			
		||||
		})
 | 
			
		||||
	end,
 | 
			
		||||
}
 | 
			
		||||
		Loading…
	
		Reference in New Issue