This commit is contained in:
Elizabeth Hunt 2024-04-21 21:28:21 -07:00
parent 442c10330a
commit 6c2b8f492a
Signed by: simponic
GPG Key ID: 2909B9A7FF6213EE
2 changed files with 8 additions and 0 deletions

View File

@ -2,6 +2,10 @@ local opt = vim.opt
vim.g.mapleader = " "
vim.wo.relativenumber = true
opt.cursorline = true
opt.laststatus = 3 -- global statusline
opt.showmode = false

View File

@ -41,6 +41,10 @@
create-lockfiles nil)
(global-auto-revert-mode t) ;; Change files on disk as they are updated
#+END_SRC
** Move by whole line units not visually
#+BEGIN_SRC emacs-lisp
(setq line-move-visual nil)
#+END_SRC
** GUI stuff
#+BEGIN_SRC emacs-lisp
(menu-bar-mode -1)