Add doom config
This commit is contained in:
parent
7a6090b815
commit
832418088b
4 changed files with 432 additions and 0 deletions
181
dot_doom.d/init.el
Normal file
181
dot_doom.d/init.el
Normal file
|
@ -0,0 +1,181 @@
|
|||
;;; init.el -*- lexical-binding: t; -*-
|
||||
|
||||
;; Copy this file to ~/.doom.d/init.el or ~/.config/doom/init.el ('doom
|
||||
;; quickstart' will do this for you). The `doom!' block below controls what
|
||||
;; modules are enabled and in what order they will be loaded. Remember to run
|
||||
;; 'doom refresh' after modifying it.
|
||||
;;
|
||||
;; More information about these modules (and what flags they support) can be
|
||||
;; found in modules/README.org.
|
||||
|
||||
(doom! :input
|
||||
;;chinese
|
||||
;;japanese
|
||||
|
||||
:completion
|
||||
company
|
||||
;;helm
|
||||
;;ido
|
||||
ivy
|
||||
|
||||
:ui
|
||||
;;deft
|
||||
doom
|
||||
;;doom-dashboard
|
||||
;; doom-quit
|
||||
;;fill-column
|
||||
hl-todo
|
||||
;;indent-guides
|
||||
modeline
|
||||
nav-flash
|
||||
;;neotree
|
||||
ophints
|
||||
(popup
|
||||
+all
|
||||
+defaults)
|
||||
;;pretty-code
|
||||
;;tabbar
|
||||
treemacs
|
||||
;;unicode
|
||||
vc-gutter
|
||||
vi-tilde-fringe
|
||||
window-select
|
||||
workspaces
|
||||
|
||||
:editor
|
||||
(evil +everywhere)
|
||||
;; file-templates
|
||||
fold
|
||||
;;(format +onsave)
|
||||
;;lispy
|
||||
;;multiple-cursors
|
||||
;;objed
|
||||
;;parinfer
|
||||
rotate-text
|
||||
snippets
|
||||
|
||||
:emacs
|
||||
(dired
|
||||
;;+ranger
|
||||
;;+icons
|
||||
)
|
||||
electric
|
||||
vc
|
||||
|
||||
:term
|
||||
;;eshell
|
||||
;;shell
|
||||
;;term
|
||||
;;vterm
|
||||
|
||||
:tools
|
||||
;;ansible
|
||||
;;debugger
|
||||
;;direnv
|
||||
;;docker
|
||||
;;editorconfig
|
||||
;;ein
|
||||
eval
|
||||
flycheck
|
||||
;;flyspell
|
||||
;;gist
|
||||
(lookup
|
||||
+docsets)
|
||||
lsp
|
||||
;;macos
|
||||
magit
|
||||
;;make
|
||||
;;pass
|
||||
;;pdf
|
||||
;;prodigy
|
||||
;;rgb
|
||||
;;terraform
|
||||
;;tmux
|
||||
;;upload
|
||||
;;wakatime
|
||||
|
||||
:lang
|
||||
;;agda
|
||||
;;assembly
|
||||
;;cc
|
||||
clojure
|
||||
;;common-lisp
|
||||
;;coq
|
||||
;;crystal
|
||||
;;csharp
|
||||
data
|
||||
;;erlang
|
||||
elixir
|
||||
;;elm
|
||||
emacs-lisp
|
||||
;;ess
|
||||
;;fsharp
|
||||
;;go
|
||||
;;(haskell +intero)
|
||||
;;hy
|
||||
;;idris
|
||||
;;(java +meghanada)
|
||||
javascript
|
||||
;;julia
|
||||
;;kotlin
|
||||
;;latex
|
||||
;;ledger
|
||||
;;lua
|
||||
markdown
|
||||
nim
|
||||
;;nix
|
||||
;;ocaml
|
||||
(org
|
||||
+dragndrop
|
||||
+ipython
|
||||
+pandoc
|
||||
+present)
|
||||
;;perl
|
||||
;;php
|
||||
;;plantuml
|
||||
;;purescript
|
||||
;;python
|
||||
;;qt
|
||||
;;racket
|
||||
;;rest
|
||||
;;ruby
|
||||
(rust +lsp)
|
||||
;;scala
|
||||
;;scheme
|
||||
sh
|
||||
;;solidity
|
||||
;;swift
|
||||
;;terra
|
||||
web
|
||||
;;vala
|
||||
|
||||
:email
|
||||
;;(mu4e +gmail)
|
||||
;;notmuch
|
||||
;;(wanderlust +gmail)
|
||||
|
||||
;; Applications are complex and opinionated modules that transform Emacs
|
||||
;; toward a specific purpose. They may have additional dependencies and
|
||||
;; should be loaded late.
|
||||
:app
|
||||
;;calendar
|
||||
;;irc
|
||||
;;(rss +org)
|
||||
;;twitter
|
||||
;;(write
|
||||
;; +wordnut
|
||||
;; +langtool)
|
||||
|
||||
:collab
|
||||
;;floobits
|
||||
;;impatient-mode
|
||||
|
||||
:config
|
||||
;; For literate config users. This will tangle+compile a config.org
|
||||
;; literate config in your `doom-private-dir' whenever it changes.
|
||||
;;literate
|
||||
|
||||
;; The default module sets reasonable defaults for Emacs. It also
|
||||
;; provides a Spacemacs-inspired keybinding scheme and a smartparens
|
||||
;; config. Use it as a reference for your own modules.
|
||||
(default +bindings +smartparens))
|
Loading…
Add table
Add a link
Reference in a new issue