1
0
Fork 0

Compare commits

...

2 Commits

Author SHA1 Message Date
Daniele Tricoli ddc0dd9760 Set modeline for neovim 2023-03-22 05:06:07 +01:00
Daniele Tricoli 857342a999 Enable modeline 2023-03-22 05:05:03 +01:00
2 changed files with 4 additions and 0 deletions

View File

@ -1,4 +1,5 @@
; {{ ansible_managed }}
; vim: ft=lisp
; Set garbage collection threshold to 100 Mbyte.
(setq gc-cons-threshold (* 100 1024 1024))

View File

@ -57,6 +57,9 @@ opt.termguicolors = true
-- Enable undo persistence.
opt.undofile = true
-- Enable modeline, since it uses an allowlist approach since neovim >= 0.5:
-- https://github.com/neovim/neovim/issues/2865
opt.modeline = true
-- Use italic for comments.
cmd [[ autocmd Colorscheme * highlight Comment cterm=italic term=italic gui=italic ]]