diff options
author | Tim Keller <tjk@tjkeller.xyz> | 2025-08-07 10:57:55 -0500 |
---|---|---|
committer | Tim Keller <tjk@tjkeller.xyz> | 2025-08-07 10:57:55 -0500 |
commit | cd9890406b256f490a322eda4339c068840c9bd4 (patch) | |
tree | 88a7bace78db1f2d4d721e74ad59710f605ce343 | |
parent | 5080d33d79570d9cb4758d2860c568db16e45229 (diff) | |
download | nvim-master.tar.xz nvim-master.zip |
-rw-r--r-- | lua/tjk/options.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lua/tjk/options.lua b/lua/tjk/options.lua index 210c45f..3b52283 100644 --- a/lua/tjk/options.lua +++ b/lua/tjk/options.lua @@ -11,6 +11,9 @@ opt.cursorline = true -- highlight current line opt.title = true -- set window title of the terminal emulator to current nvim buffer vim.cmd.aunmenu "PopUp" -- disable right click menu +-- TODO remove this when issue #32660 is fixed by #33145 +vim.g._ts_force_sync_parsing = true + -- line numbers opt.number = true -- enable line numbers opt.relativenumber = true -- enable relative line numbers |