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
- Host: GitHub
- URL: https://github.com/eliasrailis/commands
- Owner: EliasRailis
- Created: 2024-03-28T11:42:05.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-16T23:07:44.000Z (over 1 year ago)
- Last Synced: 2024-12-17T00:27:56.017Z (over 1 year ago)
- Topics: i3wm, nvim, tmux, vim
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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/