diff options
| author | Tim Keller <tjk@tjkeller.xyz> | 2026-05-22 17:06:16 -0500 |
|---|---|---|
| committer | Tim Keller <tjk@tjkeller.xyz> | 2026-05-22 17:06:16 -0500 |
| commit | e3f222487a57b2f3f995628630cd9ae65c3a210b (patch) | |
| tree | f1a3c8582ae71d859b2dd6e7c3a55b2f2a30d3f8 /lua/tjk/options.lua | |
| parent | f83593f430118f0499454f88cbe028c822e760a3 (diff) | |
| download | nvim-e3f222487a57b2f3f995628630cd9ae65c3a210b.tar.xz nvim-e3f222487a57b2f3f995628630cd9ae65c3a210b.zip | |
Diffstat (limited to 'lua/tjk/options.lua')
| -rw-r--r-- | lua/tjk/options.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lua/tjk/options.lua b/lua/tjk/options.lua index 7d6376f..321d85b 100644 --- a/lua/tjk/options.lua +++ b/lua/tjk/options.lua @@ -39,6 +39,10 @@ end}) -- ignore __pycache__ directories in file listings vim.opt.wildignore = { "__pycache__/", "*/__pycache__/" } +-- add builtin plugins +vim.cmd.packadd "nvim.undotree" +vim.cmd.packadd "nvim.difftool" + -- for running in tty if os.getenv "TERM" == "linux" then vim.cmd.colorscheme "vim" |
