kj
a7045d3b30
- Rename org-config.el to base-org.el. - Enable lsp by default. - Improve lsp. - Add citre package (ctags IDE). - Add ripgrep search. - Add pomidor (pomodoro timer). - Move keybinding for improve load time (some are deleted or changed). - Add C-x C-r keybinding for recent files. - And more...
16 lines
294 B
EmacsLisp
16 lines
294 B
EmacsLisp
;;; lang-go.el --- Configuración para el lenguaje go -*- lexical-binding: t -*-
|
|
|
|
;; Author: kj <webmaster@outcontrol.net>
|
|
;; URL: https://git.kj2.me/kj/confi-emacs-actual
|
|
|
|
;;; Commentary:
|
|
|
|
;;; Code:
|
|
|
|
(use-package go-mode
|
|
:straight t
|
|
:defer t)
|
|
|
|
(provide 'lang-go)
|
|
;;; lang-go.el ends here
|