mirror of
				https://github.com/marianozunino/nvim.git
				synced 2025-10-29 11:50:41 -03:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			298 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			298 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
| local M = { "ethanholz/nvim-lastplace" }
 | |
| 
 | |
| M.config = function()
 | |
|   require("nvim-lastplace").setup({
 | |
|     lastplace_ignore_buftype = { "quickfix", "nofile", "help" },
 | |
|     lastplace_ignore_filetype = { "gitcommit", "gitrebase", "svn", "hgcommit" },
 | |
|     lastplace_open_folds = true,
 | |
|   })
 | |
| end
 | |
| 
 | |
| return M
 |