Skip to content

Instantly share code, notes, and snippets.

View RFGMM's full-sized avatar

Ruddy Francois Molina Mendieta RFGMM

View GitHub Profile
@RFGMM
RFGMM / .vimrc
Created November 21, 2025 03:55 — forked from mikeslattery/.vimrc
Beginner's Minimal Vim Config
" This is a beginners .vimrc or init.vim file
" with sane defaults so you can be productive at the start.
" Not designed to work with Neovim.
" Sane defaults.
source $VIMRUNTIME/defaults.vim
set mouse=a " Enable mouse
set clipboard+=unnamed,unnamedplus " Use desktop's clipboard
set hidden " Allow switch buffers if current not saved
set noswapfile autoread " Swap file annoyance. Use git.
wget -qO - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
cat <<EOF | sudo tee /etc/apt/sources.list.d/google-chrome.list
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
EOF
sudo apt update
sudo apt install google-chrome-stable
@RFGMM
RFGMM / build-git.sh
Created August 15, 2017 13:31 — forked from pescobar/build-git.sh
compile git with openssl instead of gnutls
#!/usr/bin/env bash
# Clear out all previous attempts
rm -rf "/tmp/source-git/"
# Get the dependencies for git, then get openssl
sudo apt-get install build-essential fakeroot dpkg-dev -y
sudo apt-get build-dep git -y
sudo apt-get install libcurl4-openssl-dev -y
mkdir -p "/tmp/source-git/"