system-configuration/modules/home-config/neovim.scm

neovim.scm

1
(define-module (home-config neovim)
2
  #:use-module (home)
3
  #:use-module (home neovim)
4
  #:export (neovim-home))
5
6
(define neovim-home
7
  (user-home neovim-home-type
8
    (neovim-configuration
9
      (init '("set tabstop=4
10
set colorcolumn=80
11
set expandtab
12
autocmd FileType latex,tex,text,md,markdown setlocal spell
13
")))))
14