doomemacs/modules/lang/racket
Henrik Lissner a938eb33e6
Fix #2626: associate *.rkt w/ racket-mode
geiser claims *.rkt for scheme-mode, but if :lang racket is enabled,
let's assume the user wants racket-mode instead.
2020-02-29 00:08:26 -05:00
..
autoload.el Standardize naming of repl handler commands 2019-10-07 14:08:58 -04:00
config.el Fix #2626: associate *.rkt w/ racket-mode 2020-02-29 00:08:26 -05:00
doctor.el Add Racket lang 2018-07-29 10:50:17 -03:00
packages.el Fix #2373: bring back package pinning 2020-01-25 19:02:00 -05:00
README.org Conditionally enable racket-smart-open-bracket-mode 2020-02-23 15:36:16 -06:00

lang/racket

Description

This module provide integration for racket-mode.

Maintainers

This module has no dedicated maintainers.

Module Flags

This module provides no flags.

Plugins

Prerequisites

This module only require `racket`. Install it directly from the racket website, or check your package manger.

TODO Features

Configuration

racket-smart-open-bracket-mode

racket-smart-open-bracket-mode gets turned off automatically if you use parinfer, lispy. If you wish to enable it, add the following to your config.el:

(after! racket-mode
  (add-hook! racket-mode
             #'racket-smart-open-bracket-mode))

TODO Troubleshooting