diff options
author | Tim Keller <tjk@tjkeller.xyz> | 2025-06-06 10:38:29 -0500 |
---|---|---|
committer | Tim Keller <tjk@tjkeller.xyz> | 2025-06-06 10:38:29 -0500 |
commit | 3f5ecccdfb315a69db961c2fff917be7c8df939a (patch) | |
tree | a8ccc571f9402556c6d88d658e57f7279de480e7 /lua/tjk/options.lua | |
parent | 52840000c63f6adc7109fbe00ef8dd0fd0b7c5c6 (diff) | |
download | nvim-3f5ecccdfb315a69db961c2fff917be7c8df939a.tar.xz nvim-3f5ecccdfb315a69db961c2fff917be7c8df939a.zip |
disable right click menu
Diffstat (limited to 'lua/tjk/options.lua')
-rw-r--r-- | lua/tjk/options.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/tjk/options.lua b/lua/tjk/options.lua index 4fb9243..9a0dd4d 100644 --- a/lua/tjk/options.lua +++ b/lua/tjk/options.lua @@ -9,6 +9,7 @@ opt.termguicolors = true -- truecolor in terminal emulator, will be disa opt.wrap = false -- disable word wrapping 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 -- line numbers opt.number = true -- enable line numbers |