An open API service indexing awesome lists of open source software.

https://github.com/eliasrailis/commands

Just some basic commands in case I forget how to do something
https://github.com/eliasrailis/commands

i3wm nvim tmux vim

Last synced: over 1 year ago
JSON representation

Just some basic commands in case I forget how to do something

Awesome Lists containing this project

README

          

## Curl
- Check if `curl` is installed with the following command `curl --version`
- If installed we get the following output `curl 7.68.0 (x86_64-pc-linux-gnu) libcurl/7.68.0 ...`
- Else install with `sudo apt update && apt install curl -y`

## Neovim
- To install the latest version of Neovim [link](https://mansoorbarri.com/neovim-debian/)

## i3 window manager

- `Alt+d` for searching an application
- `Alt+Shift+q` to close an opened application
- `Alt+Enter` to open the terminal
- `Alt+` to create a new desktop environment
- `Alt+Shift+e` to kill i3 and logout

## Tmux

- `tmux` to create a new session
- `tmux ls` to view all the available sessions
- `tmux attach -t 0 or ` attach a terminal session to a specific target
- `tmux rename-session -t 0 ` rename an existing tmux session
- `tmux new -s ` to create a new tmux session with a specified name
- `tmux kill-server` terminate the tmux server and all sessions running within it
- `tmux kill-session -t ` terminate the specified tmux session
- `Ctrl+b+%` create a new pane
- `Ctrl+b+"` create a new pane on the bottom
- `Ctrl+b+` to move across the panes
- `Ctrl+b+` while holding down `Ctrl+b` to resize the pane
- `Ctrl+b+c` to create a new window
- `Ctrl+b+` to swtich between windows
- `Ctrl+b+,` to rename a window
- `Ctrl+b+d` to detach from session
- type `exit` on the open you would like to close

## Vim

- `vim .` or `nvim .` to open netrw
- `%` to create a new file
- `d` to create a new directory
- `:Ex` to open netrw
- `D` to delete a specific directory

## Setting up ZSH
https://itsfoss.com/zsh-ubuntu/