summary refs log tree commit diff
path: root/emacs.d/custom/fcuny-navigation.el (follow)
Commit message (Collapse)AuthorAgeFilesLines
* emacs: move ivy configuration to navigationFranck Cuny2020-06-181-0/+44
| | | | There's no need to have this in a separate configuration file.
* emacs: remove dired-git-infoFranck Cuny2020-05-291-5/+0
| | | | I don't use it.
* emacs: remove ace-windowFranck Cuny2020-05-291-35/+0
| | | | I still find this annoying.
* [emacs] show git info in dired-modeFranck Cuny2020-05-081-0/+5
| | | | When a directory, pressing ')' reveals git information.
* emacs: use the theme modus-operandiFranck Cuny2020-03-191-52/+33
| | | | | It's a light theme with high contrast. It was suggested in this article https://www.manueluberti.eu/emacs/2020/03/16/modus-themes/.
* emacs: easy navigation between windowsFranck Cuny2020-02-111-0/+6
| | | | Add a few bindings to move up / down / left / right.
* emacs/nav: diminish ivy/counsel.Franck Cuny2020-01-131-0/+2
|
* emacs: show . and .. with ivy.Franck Cuny2019-12-271-0/+1
| | | | | Not having them displayed make it more difficult to me to navigate files and directories.
* emacs: remove duplicated setting for ivyFranck Cuny2019-12-271-1/+0
| | | | The setting `ivy-use-virtual-buffer` was set twice.
* [emacs] don't hide directories info.Franck Cuny2019-11-231-2/+0
| | | | | I prefer to see the details, it's easier to understand what I'm looking at.
* [emasc] use `ls-lisp` for dired.Franck Cuny2019-10-061-4/+9
| | | | | Use emacs implementation of `ls`, which allows us to group files by type (only GNU's `ls` does that, not the one shipped by MacOS)
* [emacs] new package: ivy-richFranck Cuny2019-09-271-0/+10
| | | | | especially nice for switching buffer with the minibuffer view, it shows a little bit more information.
* [emacs] update grouping in ibufferFranck Cuny2019-08-021-2/+12
| | | | | review the grouping order (org first, for example, and group a few more file extensions together).
* [emacs] drop guide key and update ibuffer configFranck Cuny2019-07-301-8/+16
| | | | | | | guide key was not that helpful, hydra is a better way to deal with that problem. update ibuffer config to group files by major mode.
* [emacs] rework the configuration for navigation.Franck Cuny2019-06-251-24/+42
| | | | | | | | | | | | mostly inspired by reading https://github.com/patrickt/emacs. i've made the configuration of counsel and ivy more explicit, by splitting the customization. i've fixed the binding for searching with a buffer to rely on rgrep instead of ag (since i've switched to rg). i'm going to try the module 'guide-key' to see if i can be better at remembering some bindings (i always forget a bunch of them).
* [emacs] fix arguments for calling lsFranck Cuny2019-06-211-2/+2
| | | | I switched to macport, and I don't have GNU ls anymore.
* [emacs] Ignore macos files when browsing.Franck Cuny2019-04-301-1/+2
|
* [emacs] Ignore some files with dired.Franck Cuny2019-04-181-0/+11
|
* [Emacs] Rename `common.el` to `defuns.el`.Franck Cuny2019-02-171-1/+1
| | | | | | | The name `defuns` make more sense since it's a collection of functions. All the custom variables are using the prefix 'fcuny/' consistently.
* [emacs] Split configuration in multiple files.Franck Cuny2019-02-161-0/+67
This is actually an easier thing to maintain.