[nvim] Move neovim config to /nvim

This commit is contained in:
Eryn Wells 2026-01-24 15:25:05 -08:00
parent e45c1694af
commit 5b567ad2ad
28 changed files with 0 additions and 0 deletions

17
nvim/syntax/gocsstmpl.vim Normal file
View file

@ -0,0 +1,17 @@
if exists("b:current_syntax")
finish
endif
if !exists("g:main_syntax")
let g:main_syntax = 'css'
endif
runtime! syntax/gotexttmpl.vim
runtime! syntax/css.vim
unlet b:current_syntax
syn cluster htmlPreproc add=gotplAction,goTplComment
let b:current_syntax = "gocsstmpl"
" vim: sw=2 ts=2 et