1.) Download a Nerd Font
2.) Unzip and copy to ~/.fonts
3.) Run the command fc-cache -fv
to manually rebuild the font cache
{ | |
"background": "#FBF1C7", | |
"black": "#282828", | |
"blue": "#076678", | |
"brightBlack": "#A89984", | |
"brightBlue": "#076678", | |
"brightCyan": "#427B58", | |
"brightGreen": "#79740E", | |
"brightPurple": "#8F3F71", | |
"brightRed": "#9D0006", |
{ | |
"background" : "#282828", | |
"black" : "#282828", | |
"blue" : "#458588", | |
"brightBlack" : "#928374", | |
"brightBlue" : "#83A598", | |
"brightCyan" : "#8EC07C", | |
"brightGreen" : "#B8BB26", | |
"brightPurple" : "#D3869B", | |
"brightRed" : "#FB4934", |
"---- ---- ---- ---- Basic ---- ---- ---- ----" | |
let mapleader ="," | |
set visualbell | |
set noerrorbells | |
set surround | |
set commentary | |
set highlightedyank | |
set relativenumber | |
set NERDTree |
1.) Download a Nerd Font
2.) Unzip and copy to ~/.fonts
3.) Run the command fc-cache -fv
to manually rebuild the font cache
if _, err := os.Stat("/path/to/whatever"); os.IsNotExist(err) { | |
// path/to/whatever does not exist | |
} | |
if _, err := os.Stat("/path/to/whatever"); !os.IsNotExist(err) { | |
// path/to/whatever exists | |
} |
# Create the postgresql-persistent deployment | |
oc new-app --name postgresql-persistent \ | |
--docker-image registry.redhat.io/rhel8/postgresql-12:1-43 \ | |
-e POSTGRESQL_USER=redhat \ | |
-e POSTGRESQL_PASSWORD=redhat123 \ | |
-e POSTGRESQL_DATABASE=persistentdb | |
# Create a PVC and volume for the postgresql-persistent deployment | |
oc set volumes deployment/postgresql-persistent \ |
--- ----------------- ---- | |
Map Quick Explanation Link | |
--- ----------------- ---- | |
< <F1> Causes Netrw to issue help | |
<cr> Netrw will enter the directory or read the file |netrw-cr| | |
<del> Netrw will attempt to remove the file/directory |netrw-del| | |
<c-h> Edit file hiding list |netrw-ctrl-h| | |
<c-l> Causes Netrw to refresh the directory listing |netrw-ctrl-l| | |
<c-r> Browse using a gvim server |netrw-ctrl-r| | |
<c-tab> Shrink/expand a netrw/explore window |netrw-c-tab| |
if v:lang =~ "utf8$" || v:lang =~ "UTF-8$" | |
set fileencodings=ucs-bom,utf-8,latin1 | |
endif | |
set nocompatible " Use Vim defaults (much better!) | |
set bs=indent,eol,start " allow backspacing over everything in insert mode | |
"set ai " always set autoindenting on | |
"set backup " keep a backup file | |
set viminfo='20,\"50 " read/write a .viminfo file, don't store more | |
" than 50 lines of registers |
gsettings set org.gnome.shell.extensions.dash-to-dock click-action 'minimize'
sudo apt-get install gnome-sushi