These aren't being actively used. Zk and journal are vault-specific (~/Documents/Dane's Vault paths hardcoded). Taskwarrior was already commented out. TLA+ is research tooling that belongs in the FRET project, not the base editor config.
12 lines
530 B
Lua
12 lines
530 B
Lua
vim.g.dap_virtual_text = false
|
|
vim.env.PATH = vim.env.PATH .. ":/Users/danesabo/.ghcup/bin"
|
|
vim.g.loaded_python3_provider = 1
|
|
vim.g.python3_host_prog = vim.fn.expand "~/.config/nvim/nvim_venv/bin/python"
|
|
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."
|