summaryrefslogtreecommitdiff
path: root/emacs/custom/my-settings.el (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-09-17ref(completion): add more packages for completionFranck Cuny1-2/+0
Get LSP to work with cape and corfu for the completion. Change-Id: Id8f01b1dee77957ff5ba27ed471707b7b9c7dc93
2022-06-03fix(settings): run `exec-path-from-shell' when we're on a macFranck Cuny1-4/+4
Don't add `exec-path-from-shell' to the hook `emacs-startup-hook' has it's executed after `init.el' has been loaded. We need to run this when we're at this stage while processing all the init files, so that we configure correctly the path. For example, before this change, `aspell' was not used as the spell checker on mac before we were setting it to nil (the path was not set properly when we were initializing ispell through flyspell). Change-Id: I37d3e8d1c08b50966f1fe0df2579c06e37830e9a
2022-06-01fix(yasnippet): add my snippets to default path and enable yas modeFranck Cuny1-1/+8
The way I was setting the path for yasnippets was incorrect: the variable `yas-snippets-dir' is expectnig a list of path, not a regular path. I also need to enable yas globally in order to insert them. Change-Id: I437d6fcd8a976d1f42a13707008436dc15547d56 Reviewed-on: https://cl.fcuny.net/c/emacs.d/+/203 Reviewed-by: Franck Cuny <franck@fcuny.net>
2022-05-19yas: change the default keybindingFranck Cuny1-1/+5
2022-05-15snippets: configure the default pathFranck Cuny1-0/+2
2022-04-29don't specify where to write Emacs filesFranck Cuny1-6/+0
We don't care, as long as these files are ignored in `.gitignore' it does not matter where we write them.
2022-04-27ensure we store local files under var/Franck Cuny1-0/+1
2022-04-27my-settings: more of the sameFranck Cuny1-9/+6
2022-04-19remove the need for `use-package' in my-settings.elFranck Cuny1-13/+15
2022-04-19start to install packages without use-packageFranck Cuny1-6/+3
Define a list of packages in `init.el', and then use plain `require' in the various custom modules. The first two packages installed that way are: - notmuch - exec-path-from-shell
2022-04-16emacs: where to save stateFranck Cuny1-1/+6
2022-04-14replace avy/counsel with vertico/consultFranck Cuny1-0/+4
2022-03-25mac: ensure exec-path-from-shell is installedFranck Cuny1-0/+1
2022-03-25settings: simplify server / exec-path-from-shellFranck Cuny1-7/+7
2022-03-23rename fcuny-settings to my-settingsFranck Cuny1-3/+3
2022-03-23settings: don't pull fcuny-vars anymoreFranck Cuny1-3/+7
This library is going away. Also update the docs.
2022-03-21settings: make it work with flymakeFranck Cuny1-5/+10
2022-01-29emacs: a more visible cursorFranck Cuny1-1/+1
2022-01-14emacs: simplify git/magit configurationFranck Cuny1-1/+0
I don't have to deal with magit anymore, so I can drop all the stuff that removed the VC stuff.
2021-01-04emacs: log when the GC kicks inFranck Cuny1-0/+1
2021-01-04emacs: rename the directoryFranck Cuny1-0/+0
2020-03-15emacs: consolidate basic configurationFranck Cuny1-1/+16
The configuration for the module `midnight`, `emacs-server` and `exec-path-from-shall` is moved to the package containing a bunch of misc. settings.
2020-03-15emacs: ensure a few more things are utf8Franck Cuny1-0/+2
2019-04-18[emacs] set my identity.Franck Cuny1-0/+3
2019-02-16[emacs] Split configuration in multiple files.Franck Cuny1-0/+36
This is actually an easier thing to maintain.