From 2383c4b5878055e2cd13fd5ed2ac2e0820b3286f Mon Sep 17 00:00:00 2001 From: Oxbian Date: Tue, 25 Jul 2023 15:58:14 +0200 Subject: Updating fern actions & fern treeview + how to use vm in vim instructions --- README.md | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index cd76706..fb5ac25 100644 --- a/README.md +++ b/README.md @@ -91,15 +91,15 @@ More help at `:help spell` For help, use `:help fern`. Keybinds: -- `Ctrl+f` open the treeview in the current window, +- `Ctrl+f` open the treeview buffer at the left, - `ga` stage a file from git, - `gd` unstage a file from git, -- `cp` copy node name (file, folder..), -- `cP` copy node path, - `a` create a file or folder, - `d` delete a file or folder, - `r` rename a file or folder, -- `m` move a file or folder. +- `m` move a file or folder, +- `v` open a file in vertical split, +- `s` open a file in horizontal split ### Vim Gutter @@ -160,3 +160,13 @@ python -m venv .venv source .venv/bin/activate pip install python-lsp-server[all] ``` + +## VM + +To code on a virtual machine, I use sshfs, it just mount the system of the vm on my machine and tada! + +```bash +sudo mkdir /mnt/vm +sudo sshfs -o allow_other -p 22 user@localhost:/home/user/ /mnt/vm/ +``` + -- cgit v1.2.3