File tree Expand file tree Collapse file tree 3 files changed +11
-0
lines changed
programs/neovim/config/lua/user/files Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ versioning is done in a continuous fashion without worries of breaking changes.
66
77## patches
88
9+ - ` nvim ` : support highlighting an html templating engine called eta 2026-02-07
910- ` zsh ` : alias zips to worktrees matching alphabetic alias creation 2026-02-07
1011- ` nvim ` : remove black linting and formatting to replace with ruffs 2026-02-07
1112- ` github-runners ` : return rsync for updating a mirror of slack app 2026-02-06
Original file line number Diff line number Diff line change 1+ vim .api .nvim_create_autocmd ({
2+ " BufRead" ,
3+ " BufNewFile" ,
4+ }, {
5+ pattern = " *.eta" ,
6+ callback = function ()
7+ vim .cmd .set (" filetype=html" )
8+ end ,
9+ })
Original file line number Diff line number Diff line change 11require (" user.files.c" )
22require (" user.files.ecmascript" )
3+ require (" user.files.eta" )
34require (" user.files.go" )
45require (" user.files.groovy" )
56require (" user.files.mdx" )
You can’t perform that action at this time.
0 commit comments