- xclip
- Used for xclip mode, that permit to copy paste from
emacs -nw
to other windows.
# apt install xclip
- w3m
- Used for w3m mode
# apt install w3m
- fonts-powerline
- To get fancy powerline, even in terminal mode
# apt install fonts-powerline
- clang
- Used by company clang, for flychecking the C/C++ files.
# apt install clang
- lua-check
- Used for flycheck of lua code
# apt install lua5.1 lua-check
- shellcheck
- Used for flycheck of shell script
# apt install shellcheck
- git
- Used by magit, which is a git interface for emacs
# apt install git
Be sure to remove all the .elc
files from $HOME/.emacs.d/elpa/org-XXXXXX/
$ rm $HOME/.emacs.d/elpa/org-XXXXXX/*.elc
You can then recompile the files from $HOME/.emacs.d/elpa/org-XXXXXX/
by typing
C-u 0 M-x byte-recompile-directory RET <path to org-XXXXXX> RET
from an emacs session.
Be sure to put the shebang #!/bin/bash
at the begining of your bash scripts
in order to let flycheck know that your file is a bash script rather than a
POSIX shell script.
If flycheck continue thinking that the file is a sh script, try closing and
reopening the file or reloading the flycheck mode.