This file contains 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
if empty(glob('~/.config/nvim/autoload/plug.vim')) | |
silent !curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs | |
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC | |
endif | |
call plug#begin('~/.config/nvim/plugged') | |
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" => General |
This file contains 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
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" => Bootstrap | |
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
silent !mkdir -p ~/.vim/sessions/ > /dev/null 2>&1 | |
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" => Variables | |
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
let g:python_host_prog = '/usr/bin/python2' | |
let g:python3_host_prog = '/usr/bin/python3' |
This file contains 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
set $mod Mod4 | |
font pango:Terminus Bold 14px | |
floating_modifier $mod | |
hide_edge_borders smart | |
new_window pixel 1 | |
focus_follows_mouse no | |
# enable floating when previewing images | |
for_window [class="Display"] floating enable |
This file contains 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
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: bar | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: bar | |
template: |
This file contains 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
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: foo | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: foo | |
template: |
This file contains 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
apiVersion: v1 | |
kind: Namespace | |
metadata: | |
name: kong | |
--- | |
apiVersion: apiextensions.k8s.io/v1beta1 | |
kind: CustomResourceDefinition | |
metadata: | |
name: kongconsumers.configuration.konghq.com | |
spec: |
This file contains 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
### Prerequisite | |
windows 10 installed | |
empty space for linux | |
turn off safe boot to be able to boot usb drive | |
turn off fast startup as it might damage your EFI partition | |
### Installation | |
timedatectl set-ntp true | |
loadkeys sv-latin1 | |
cfdisk /dev/sdX (set disk to type GPT) |