summaryrefslogtreecommitdiff
path: root/emacs/custom/fcuny-git.el (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-01-06emacs: performance improvement for magitFranck Cuny1-1/+42
When working with 'source', magit is extremely slow (source is a huge repository, so it's not surprising). We can improve significantly performances by disabling a number of hooks when running git status.
2021-01-04emacs: rename the directoryFranck Cuny1-0/+0
2020-07-17emacs: add git-link / support for sourcegraphFranck Cuny1-0/+31
We're moving from go/cs (twitter's own code search) to sourcegraph. I'm adding git-link and the configuration to go from emacs to our sourcegraph instance. Doing `git-link` in a file will take me to the file in sg, and doing `git-link-commit` on a commit in magit will take me to the commit in sg.
2020-04-12emacs/ui: use the default themeFranck Cuny1-3/+12
2020-03-21magit: improve performance for magit in large repoFranck Cuny1-0/+14
Opening a file in source is extremely slow, and I'm guessing it's related to git/magit, since I don't see this elsewhere. As suggested in https://magit.vc/manual/magit/Performance.html and https://magit.vc/manual/magit/Per_002dRepository-Configuration.html, I'm disabling git from VC's backend, and disable refreshing the magit buffer for source.
2020-03-19magit: clean up config by removing unused stuffFranck Cuny1-9/+4
or stuff that I don't know what they do.
2020-03-19emacs: add a few more modes for git supportFranck Cuny1-2/+7
2020-02-16magit: minor configuration updateFranck Cuny1-0/+2
2019-12-27emacs: magit buffer in full frameFranck Cuny1-2/+4
With a bigger font, on a 13" laptop, I want magit to be full frame, I don't want anything splitted. Move a couple of other settings to the `:custom` section of `use-package`.
2019-04-08[emacs] Update configuration related to git.Franck Cuny1-1/+5
2019-02-16[emacs] Split configuration in multiple files.Franck Cuny1-0/+14
This is actually an easier thing to maintain.