summary refs log tree commit diff
path: root/emacs.d/lib (follow)
Commit message (Collapse)AuthorAgeFilesLines
* [emacs] Large refactoring.Franck Cuny2018-04-087-821/+0
| | | | | | | | | | | At first I wanted to add support for java, and then I realized that maintaining a giant file with all the packages was not working as I was expected. The configuration is broken down to multiple files now, with each major mode in a separate file, and the main modules in their own too. This should make it easier to maintain and organize.
* [emacs] fix some path after directories reorgFranck Cuny2018-04-012-4/+4
|
* [emacs] fix font (again)Franck Cuny2018-03-271-1/+1
|
* [emacs] well, fonts ...Franck Cuny2018-03-221-1/+1
|
* [emacs] Emacs is not a tool to operate hosts/clusters.Franck Cuny2018-03-221-13/+0
|
* [emacs] add support for rust.Franck Cuny2018-03-221-0/+16
|
* [emacs] Add Google's C style guide.Franck Cuny2018-02-281-0/+3
|
* [emacs] No, smaller font :pFranck Cuny2018-02-281-1/+1
|
* [emacs] some visual changes:Franck Cuny2018-02-281-5/+3
| | | | | | - change frame title to include filename - bigger fringe - biffer font (again)
* [emacs] add support for protobufFranck Cuny2018-02-281-0/+4
|
* [emacs] some cleanup too, remove unused stuffFranck Cuny2018-02-202-18/+10
|
* [Emacs] Set different font size for Linux and darwin.Franck Cuny2018-02-181-1/+3
| | | | We want a smaller font on Linux.
* [emacs] Set font to DejaVuFranck Cuny2018-02-141-1/+1
|
* [emacs] Default theme / font / colors.Franck Cuny2018-01-171-1/+1
|
* [emacs] Add back my theme and switch font size / family.Franck Cuny2018-01-162-4/+4
|
* [emacs] add scala-modeFranck Cuny2017-10-181-0/+4
|
* [emacs] smaller fontFranck Cuny2017-09-201-1/+1
|
* [emacs] Add org-mode configuration once again.Franck Cuny2017-06-161-0/+48
| | | | Only load some packages if we are using a recent version of Emacs.
* [Emacs] Move packages configuration to a new file.Franck Cuny2017-04-272-0/+416
| | | | | Keep `init.el` as small as possible, and move all the packages to their own configuration file.
* [Emacs] fix a commentFranck Cuny2017-04-271-1/+1
|
* [Emacs] small adjustment to wabi-sabi.Franck Cuny2017-04-071-5/+5
| | | | A little bit less "yellow".
* [Emacs] Use the system's default mono font.Franck Cuny2017-04-071-1/+1
| | | | Menlo on OSX
* [Emacs] change the style of the cursor.Franck Cuny2017-04-061-1/+1
|
* [Emacs] cosmetic change (font size and background color)Franck Cuny2017-03-142-2/+2
|
* [Emacs] Don't use native fullscreen for OSX.Franck Cuny2017-02-271-0/+4
|
* [Emacs] Enable global highlight and fix font.Franck Cuny2017-02-271-1/+4
|
* [Emacs] Use different color for highlight and region.Franck Cuny2017-02-271-2/+3
|
* [Emacs] Move all the configuration related to twitter to it's own fileFranck Cuny2017-02-182-23/+84
| | | | | | The configuration for the style checker; the functions to create remote files on nest; etc. All are now living in a file with all things related to twitter.
* [Emacs] Move wabi-sabi theme inside this repo.Franck Cuny2017-02-171-0/+62
|
* [Emacs] and back to a smaller fontFranck Cuny2017-02-161-1/+1
|
* [Emacs] Add a few more functions to work with 'nest' hosts.Franck Cuny2017-01-121-1/+24
| | | | | | | Add a function to open a dired buffer on a remote host, and a function to do that for nest. Also add a few functions to (un-)monitor hosts from Emacs.
* [Emacs] The only VC backend I care about is Magit.Franck Cuny2017-01-031-7/+3
|
* [Emacs] Disable menu bar.Franck Cuny2017-01-031-1/+1
|
* [emacs] Slightly bigger font and no bell.Franck Cuny2017-01-021-1/+5
|
* [Emacs] Update a comment.Franck Cuny2016-12-161-1/+1
|
* [Emacs] Delete the custom theme.Franck Cuny2016-12-151-59/+0
| | | | It now lives in it's own repository.
* [emacs] Use default fontFranck Cuny2016-12-151-1/+1
|
* [Emacs] a few more changes to the theme.Franck Cuny2016-12-061-14/+12
|
* [Emacs] Set the cursor type.Franck Cuny2016-11-301-0/+3
|
* [Emacs] some small adjustments to the theme.Franck Cuny2016-11-221-16/+28
|
* [Emacs] Display how long it takes to load the configurationFranck Cuny2016-11-211-7/+2
| | | | | Instead of writing a custom function, use the emacs-startup-hook for that.
* [Emacs] Some updates to my own theme.Franck Cuny2016-11-201-8/+7
|
* [Emacs] Use DejaVu Sans Mono for the font, add time, and bookmarks.Franck Cuny2016-11-201-4/+12
| | | | | The bookmarks can be useful (for example, to go quickly to a thrift definition, when I never remember the path).
* [Emacs] Split the configuration in individual lines.Franck Cuny2016-11-201-14/+33
| | | | | Instead of having a large `(setq ...)', let's have multiple one. This makes it easier to comment on them.
* [Emacs] Try a new font (Go Mono).Franck Cuny2016-11-171-5/+2
|
* [Emacs] Add a custom theme.Franck Cuny2016-11-171-0/+50
| | | | | A simple theme, with no syntax highlighting. The text is black, and comments / documentation are bold (to make it easier to see).
* [Emacs] add a few commentsFranck Cuny2016-11-121-1/+3
|
* [Emacs] Rename config.el to settings.elFranck Cuny2016-11-121-2/+2
|
* [Emacs] renamed my custom files and load them with use-package.Franck Cuny2016-11-113-4/+15
| | | | | | | The new names are more logical. They are loaded with `use-package', and the bindings are also set that way. For general bindings, we store them in the 'bindings.el' library.
* [Emacs] small changes to the style.Franck Cuny2016-11-091-1/+4
| | | | | Use a light gray for the mode line and a very light yellow for the background.
* [Emacs] Add a few custom functions.Franck Cuny2016-11-081-0/+46
| | | | Mostly stolen from spacemacs.
* [Emacs] display message in mini buffer for a short amount of timeFranck Cuny2016-11-081-0/+3
|
* [emacs] Some changes to the UI.Franck Cuny2016-10-261-8/+6
|
* [emacs] add a couple of functions to open temp filesFranck Cuny2016-10-261-11/+15
| | | | | | | | One of the function is to create a temp file locally, while the second one is to create it on nest. Remove the function to find the wiki pages (they are stored in Keep and Drive now).
* [emacs] Use unicode for everything.Franck Cuny2016-10-141-0/+2
|
* [emacs] Change the font size and the frame's title.Franck Cuny2016-10-141-2/+6
| | | | | | | | Use a bigger font for the main window, and a smaller one for the modeline. Change the title of the frame to contain the mode and the name of the file.
* [emacs] Delete configuration for org-mode.Franck Cuny2016-10-141-43/+0
|
* [emacs] Fix indentation for a function.Franck Cuny2016-08-221-7/+7
|
* [emacs] Add a function to open a doc. pageFranck Cuny2016-08-221-0/+11
| | | | | | Use ivy/read to list all the documentation page and open one with. Closes #24.
* [emacs] fix the configuration for org-modeFranck Cuny2016-08-041-6/+6
| | | | | The name of the module for `use-package' was incorrect, therefore the hooks were not loaded when a org file was opened.
* [emacs] Move back to `use-package'.Franck Cuny2016-08-043-0/+134
Move some settings out from 'init.el' to make it easier to read. Closes #18, closes #17, closes #7.