fix(v): load v-mode

This commit is contained in:
rondDev 2024-08-29 12:10:05 +02:00
parent a5d4bc5c10
commit 6ea4763de1
3 changed files with 4 additions and 3 deletions

View file

@ -172,6 +172,7 @@
;;solidity ; do you need a blockchain? No. ;;solidity ; do you need a blockchain? No.
;;swift ; who asked for emoji variables? ;;swift ; who asked for emoji variables?
;;terra ; Earth and Moon in alignment for performance. ;;terra ; Earth and Moon in alignment for performance.
v
web ; the tubes web ; the tubes
yaml ; JSON, but readable yaml ; JSON, but readable
zig ; C, but simpler zig ; C, but simpler

View file

@ -1,3 +1,4 @@
;;; lang/v/config.el -*- lexical-binding: t; -*- ;;; lang/v/config.el -*- lexical-binding: t; -*-
(use-package! vlang-mode) (use-package! v-mode
:mode ("\\(\\.v?v\\|\\.vsh\\)$" . 'v-mode))

View file

@ -1,5 +1,4 @@
;; -*- no-byte-compile: t; -*- ;; -*- no-byte-compile: t; -*-
;;; lang/v/packages.el ;;; lang/v/packages.el
(package! vlang-mode (package! v-mode)
:recipe (:host github :repo "Naheel-Azawy/vlang-mode"))