Add config options for showing and hiding the top menu and line index

This commit is contained in:
2025-06-12 21:16:33 +03:00
parent 444c355117
commit dd0cc2a293
5 changed files with 30 additions and 6 deletions
+2 -2
View File
@@ -39,8 +39,8 @@ var mouseHeld = false
func CreateWindow() (*Window, error) {
window := Window{
ShowTopMenu: true,
ShowLineIndex: true,
ShowTopMenu: Config.ShowTopMenu,
ShowLineIndex: Config.ShowLineIndex,
CursorMode: CursorModeBuffer,
CurrentBuffer: nil,