1;; Disable menu bar except for GUI emacs
2(if (not window-system)
3  (add-hook 'term-setup-hook #'(lambda () (menu-bar-mode -1))))
4
5(custom-set-variables
6 '(gud-gdb-command-name "gdb --annotate=1")
7 '(large-file-warning-threshold nil)
8)
9