- Drop loaded_python3_provider + python3_host_prog: the guard variable was wrong (1 doesn't disable, 0 does) and the venv path doesn't survive a fresh clone. Let nvim find system python instead. - Add "black" to Mason ensure_installed; conform already uses it for Python but it wasn't being auto-installed. - Delete lua/custom/configs/rust-tools.lua: leftover from before rustaceanvim migration, never required anywhere.
10 lines
418 B
Lua
10 lines
418 B
Lua
vim.g.dap_virtual_text = false
|
|
vim.env.PATH = vim.env.PATH .. ":/Users/danesabo/.ghcup/bin"
|
|
vim.keymap.set("i", "jj", "<ESC>")
|
|
vim.opt.updatetime = 1000 -- 1 second delay for CursorHold events
|
|
vim.o.sessionoptions = "blank,buffers,curdir,folds,help,tabpages,winsize,winpos,terminal,localoptions"
|
|
|
|
require "custom.language_specific_commands.cadquery"
|
|
require "custom.git_quickpush"
|
|
print "Custom init settings loaded."
|