aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
Commit message (Collapse)AuthorAgeFilesLines
* Change directory lisp/ to modules/Jesús2019-01-2236-892/+0
| | | | FS #2
* fix validator flycheck on init-ccc FS #2Jesús2019-01-211-0/+11
|
* fix functions not found sanityinc/adjust-opacityJesús2019-01-211-2/+8
| | | | FS #4 #2
* fix neotree don't update the generated files FS#3Jesús2019-01-211-9/+83
|
* added support gitJesús2019-01-081-0/+97
|
* only phpJesús2019-01-082-1/+29
|
* Added dokuwiki-modeJesús2018-11-211-0/+4
|
* Remove mmm-mode, php-mode :: only web-modeJesús2018-11-123-50/+16
| | | | | | | | | Working in PHP languages with HTML is a daily task. In the first instance I tried to combine its syntax with multi-web-mode but it consumed a lot of resources. In the second instance I made the language reader using mmm-mode, reading php-mode in web mode. However this has not been enough because the color problems between modes produce bugs. Now only the web-mode for PHP works, and I have managed to activate PHP flycheck for web-mode.
* Show message «Done! emacs»Jesús2018-11-101-0/+13
|
* Improve mmm-modeJesús2018-11-101-7/+20
|
* keyboard shortcut [F2] to ecb-modeJesús2018-11-101-3/+13
|
* add-hook is a function, so all of its args are evaluated before it does its ↵Jesús2018-11-081-2/+3
| | | | | | | | | thing (using their values). The value of the sexp you passed as its second arg is the symbol delete-trailing-whitespace, because the arg to when is a non-nil list (because you quoted it). So the when condition is always true. And you never invoke function delete-trailing-whitespace; you just return the symbol that names that function.
* fix whitespace and undo-treeJesús2018-11-081-4/+17
| | | | | - Remove whitespace, except on diff-mode - Improve syntax undo-tree-mode
* Enable web mode HTML tag highlightingJesús2018-11-071-0/+2
| | | | | | | | | | | | Note: You can find what face is applied to text a number of ways. If you can get your cursor on the text. You can use M-x describe-face which will give you a default option of the current face. Or you can use M-x describe-char which will tell you what face is applied. You can customize faces through the customize feature or with elisp. If you can't get your cursor on the face, try finding the face using customize-group, list-faces-display or by reading the packages code.
* update URL of securityJesús2018-11-071-3/+3
|
* Arrange autocomplete settings for mmm-modeJesús2018-11-071-4/+6
|
* Enable flycheck on mmm-modeJesús2018-11-071-0/+1
|
* Added support emmet to web-modeJesús2018-11-061-0/+1
|
* Added support for PHP + HTML combined with the help of mmm-modeJesús2018-11-063-4/+20
| | | | Note: remember that working with PHP and combined HTML isn't a best practice
* Added web-modeJesús2018-11-022-2/+11
| | | | | it's only enabled in the extensions djhtml, html, tpl see init-web-mode.el
* Revert "multiple major mode support for web editing in Emacs"Jesús2018-11-021-10/+0
| | | | | | | The change is reversed. This is done because it isn't best practice to mix PHP with HTML :( This reverts commit 0479eaa621096911f81f11d46c5e6f54d192b1ec.
* multiple major mode support for web editing in EmacsJesús2018-11-021-0/+10
|
* Disable for default init-guidesJesús2018-11-011-2/+1
| | | | | | when this default mode is used in files of more than 15000 lines of code it freeze!, is better to look at the file without the guidelines and then activate this mode.
* single syntax with «use-package»Jesús2018-10-2616-130/+125
|
* fix indentJesús2018-10-265-12/+14
|
* change require-package to use-packageJesús2018-10-2025-64/+44
|
* Added custom mode-htmlJesús2018-10-171-0/+13
|
* Added crystal languageJesús2018-10-151-0/+10
|
* Added major mode for editing nginx config filesJesús2018-10-041-0/+8
|
* Add all-the-icons on combination with neotree | esthetic directoryJesús2018-10-032-1/+18
|
* Added neotree - Manage directoryJesús2018-10-031-0/+17
|
* Added Emmet ModeJesús2018-10-021-0/+6
| | | | | | | Emmet Mode is a minor mode providing support for Zen Coding by producing HTML from CSS-like selectors → https://github.com/smihica/emmet-mode
* - Added ECBJesús2018-10-021-0/+9
| | | | | | | Emacs Code Browser (Navegador de Código de Emacs, on spanish). We present a configuration of windows in which will include a browser of files and directories, a browser of objects within our code and a history in addition to the window of our code.
* - Refactoring diminish modeJesús2018-10-022-7/+9
| | | | | | | | The diminish mode is activated, which helps us to keep the modeline clean. As we see, in the modeline the modes that are activated are shown, and every time we have more activated minor-modes, which add small functionalities to Emacs. In this case, there are many modes, that if they do not appear, nothing happens. So we hide some, like undo-tree that will always be activated.
* Added Diminish and Undo-treeJesús2018-10-021-0/+14
|
* Added Jedi - Python auto-completion for EmacsJesús2018-10-021-0/+22
|
* refactory → single syntax on php-modeJesús2018-09-231-57/+15
|
* provide highlight-indent-guideJesús2018-09-231-0/+8
|
* refresh packages from melpaJesús2018-09-231-0/+5
|
* Add support yaml-modeJesús2018-08-311-0/+4
|
* Added tool editorconfigJesús2018-08-251-0/+8
|
* minor fixJesús2018-08-111-1/+1
|
* Added whitespace-modeJesús2018-08-111-0/+6
|
* fix C++-mode incorrect indentationJesús2018-08-111-0/+14
|
* Can't guess python-indent-offset, using defaults 4Jesús2018-08-091-0/+1
| | | | | | | | | When you open a python file, emacs guesses the indentation offset (number of spaces to indent) based on that file style. When you create a file (the case you describe), emacs cannot guess (file is empty) so it uses your default (4) and notifies the user. In other words: tt is a harmless warning; if you find this is a bug please report it as such. If you don't like emacs guessing the offset, customize the variable python-indent-guess-indent-offset to nil, and then emacs will use always your default (very unsafe in python, where indentation has meaning and you could be editing a file created by somebody else with other defaults).
* stop creating #autosave# filesJesús2018-08-091-1/+2
|
* set to 4 spaces in pythonJesús2018-08-091-0/+9
|
* Added flycheck to php-modeJesús2018-08-081-0/+1
|
* minor fixJesús2018-08-081-1/+0
| | | | - remove line 'fci-mode 0'
* rainbow-mode: colorize color names in buffers (css, less, sass, scss)Jesús2018-08-071-0/+10
|