Compare commits
	
		
			2 Commits
		
	
	
		
			fab4e88ed3
			...
			de10500dc8
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					de10500dc8 | ||
| 
						 | 
					f8d337438e | 
@@ -1,16 +1,10 @@
 | 
				
			|||||||
-- This will run last in the setup process.
 | 
					 | 
				
			||||||
-- This is just pure lua so anything that doesn't
 | 
					 | 
				
			||||||
-- fit in the normal config locations above can go here
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
-- Custom keymaps
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
-- use gp to set visual selection on the recently pasted text
 | 
					 | 
				
			||||||
vim.keymap.set('n', 'gp', '`[v`]', { desc = 'Visual selection of pasted text' })
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
-- Needed for python3 through mise
 | 
					 | 
				
			||||||
-- Locate python3 using PATH
 | 
					-- Locate python3 using PATH
 | 
				
			||||||
local python_path = vim.fn.exepath("python3")
 | 
					local python_path = vim.fn.exepath("python3")
 | 
				
			||||||
if python_path == nil or python_path == "" then
 | 
					if python_path == nil or python_path == "" then
 | 
				
			||||||
else
 | 
					else
 | 
				
			||||||
  vim.g.python3_host_prog = python_path
 | 
					  vim.g.python3_host_prog = python_path
 | 
				
			||||||
end
 | 
					end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					-- This will run last in the setup process.
 | 
				
			||||||
 | 
					-- This is just pure lua so anything that doesn't
 | 
				
			||||||
 | 
					-- fit in the normal config locations above can go here
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user