In ~/.config/powerline/themes/tmux
, create default.json
with the following content:
Output directory of CUPS-PDF-Printer
Posted on
The output directory of the CUPS-PDF-Printer is set in /etc/cups/cups-pdf.conf
. The default directory is /var/spool/cups-pdf/${USER}
. Set it like Out ${HOME}
.
SpaceVim从尚未入门到放弃
Posted on
从昨天开始,又折腾了一下neovim的配置,这次尝试了一下SpaceVim。用下来以后感觉SpaceVim确实是一个很不错的vim配置框架,但是由于一些问题,我最终还是放弃了它。在此记录一下。
To use Tex Live within tinytex
Posted on
|
Edited on
- Just uninstall
TinyTex
is enough to use other installed LaTeX distribution. To uninstall
TinyTex
:1
2
3rm -rf ~/.TinyTex
rm -rf ~/bin # or just remove the links in ~/bin
# remove ~/bin from $PATHTo use
latexmk
instead of tinytex’s emulation:1
2> options(tinytex.latexmk.emulation = FALSE)
> bookdown::render_book("./index.Rmd","bookdown::pdf_book")
chmod设置当前路径下所有文件和目录的权限
Posted on
目录权限设为755,文件权限设为644:
1 | find ./ -type d | xargs -i chmod 755 {} # dir |