2022-06-01 15:18:06 +02:00
|
|
|
;;; lang-go.el --- Configuración para el lenguaje go -*- lexical-binding: t -*-
|
2022-03-30 01:21:13 +02:00
|
|
|
|
|
|
|
;; Author: kj <webmaster@outcontrol.net>
|
|
|
|
;; URL: https://git.kj2.me/kj/confi-emacs-actual
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
2023-04-14 18:39:19 +02:00
|
|
|
;; Archivo de configuración para el lenguaje GO
|
|
|
|
|
2022-03-30 01:21:13 +02:00
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(use-package go-mode
|
2022-05-27 23:04:28 +02:00
|
|
|
:straight t
|
2022-03-30 01:21:13 +02:00
|
|
|
:defer t)
|
|
|
|
|
|
|
|
(provide 'lang-go)
|
|
|
|
;;; lang-go.el ends here
|