Disable the Checkers Layer in SpaceVim

Posted on Oct 20, 2019 in Software • Tagged with Software, SpaceVim, Vim, checkers, layer, LSP, language server protocol

Things under legendu.net/outdated are outdated technologies that the author does not plan to update any more. Please look for better alternatives.

The SpaceVim project has been abandoned. Check AstroVim instead.

You can use the following command in SpaceVim to disable the checkers layer temporarily.

let g:spacevim_lint_on_save = 0 …

Continue reading

SpaceVim - A Modern Vim/NeoVim Configuration

Posted on Mar 03, 2019 in Software • Tagged with software, SpaceVim, Vim, NeoVim, configuration, tips

Things under legendu.net/outdated are outdated technologies that the author does not plan to update any more. Please look for better alternatives.

The SpaceVim project has been abandoned. Check AstroVim instead.

Installation

curl -sLf https://spacevim.org/install.sh | bash
# enable Python3 support
wajig install python3 python3-pip
pip3 install …

Continue reading

Tips on tmux

Posted on Oct 22, 2013 in Software • Tagged with tips, tmux, software, remote, screen, terminal

Things under legendu.net/outdated are outdated technologies that the author does not plan to update any more. Please look for better alternatives.

** Things under legendu.net/outdated are outdated technologies that the author does not plan to update any more. Please look for better alternatives. **

Zellij is a better …


Continue reading

Terminator is an Awesome Terminal Emulator

Posted on Oct 18, 2013 in Software • Tagged with software, terminal, tips, Linux, terminator

Things under legendu.net/outdated are outdated technologies that the author does not plan to update any more. Please look for better alternatives.

** Things under legendu.net/outdated are outdated technologies that the author does not plan to update any more. Please look for better alternatives. **

Hyper.js is a …


Continue reading

Docker on Windows

Posted on Jul 08, 2017 in Software • Tagged with Software, Docker, Widnows, Windows 10, Hyper-V, Virtualization

It is suggested that you use Docker in WSL rather than using Docker for Windows.

Things under legendu.net/outdated are outdated technologies that the author does not plan to update any more. Please look for better alternatives.

It is suggested that you use Docker on WSL 2.

While Docker …


Continue reading

Tips on Dockerswarm

Posted on Oct 10, 2019 in Software • Tagged with Software, Docker, Docker Swarm

Things under legendu.net/outdated are outdated technologies that the author does not plan to update any more. Please look for better alternatives.

https://ender74.github.io/Sharing-Volumes-With-Docker-Swarm/

Volume

docker service create \
    --name nginx \
    --mount type=bind,source=`pwd`/static-site,target=/usr/share/nginx/html \
    -p 80:80 nginx
    https …

Continue reading