Skip to content

Instantly share code, notes, and snippets.

View mrLuisFer's full-sized avatar
If u work more than u living, then u're f*cked

Luis Alvarez mrLuisFer

If u work more than u living, then u're f*cked
View GitHub Profile
@mrLuisFer
mrLuisFer / cmd.sh
Last active November 29, 2021 16:57
Equivalent Linux Commands for Windows
# 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
@mrLuisFer
mrLuisFer / install-git-ubuntu.sh
Created September 15, 2021 04:17
Install the latest version of Git on Ubuntu-based distributions 🌿
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
@mrLuisFer
mrLuisFer / install-neovim.sh
Last active October 4, 2021 22:37
⚡ These are the commands with which we can install Neovim 0.5 or latest in Ubuntu-based distributions and others OS
# 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
# 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.
# 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)"