This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create an empty file | |
Linux - touch file.js | |
Windows - fsutil file createnew file.js 0 | |
# Remove a file | |
Linux - rm ./file.js | |
Windows - rm .\file.js / del .\file.js | |
# List Directories | |
Linux - ls / la / l |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo add-apt-repository -y ppa:git-core/ppa | |
sudo apt-get update | |
sudo apt-get install git -y | |
git --version | |
# If your system doesn't have add-apt-repository, you can install it via: | |
sudo apt-get install python-software-properties software-properties-common | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Ubunt Based Dist | |
sudo add-apt-repository ppa:neovim-ppa/unstable | |
sudo apt-get update | |
sudo apt-get install neovim | |
# Arch Linux | |
sudo pacman -S neovim | |
# Fedora | |
sudo dnf install -y neovim python3-neovim |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Configuration for Alacritty, by mrLuisFer. | |
# All imports must either be absolute paths starting with `/`, or paths relative | |
# to the user's home directory starting with `~/`. | |
#import: | |
# - /path/to/alacritty.yml | |
# Any items in the `env` entry below will be added as | |
# environment variables. Some entries may override variables | |
# set by alacritty itself. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# For the icons of the packages and languages to be displayed correctly you need to install a Nerd Font | |
# You can do it with the following link | |
# https://www.nerdfonts.com | |
[line_break] | |
disabled = false | |
[character] | |
success_symbol = "[ ](bold blue)" |