Skip to content

Instantly share code, notes, and snippets.

View pojntfx's full-sized avatar
💭
🍂

Felicitas Pojtinger pojntfx

💭
🍂
View GitHub Profile
@pojntfx
pojntfx / template-rvwg-01.html
Created February 5, 2018 12:45
RvWG main template before modal removal
<!-- NAVIGATION BAR STYLE -->
<!-- (c) 2017 Nils Reichert & Felix Pojtinger -->
<!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#ff8c00">
<!-- Windows Phone -->
<meta name="msapplication-navbutton-color" content="#ff8c00">
<!-- iOS Safari -->
<meta name="apple-mobile-web-app-status-bar-style" content="#ff8c00">
@pojntfx
pojntfx / app.js
Created February 12, 2018 21:10
React Native & NativeBase Cards (A mix of Instagram and Reddit)
import React, { Component } from 'react';
import { Image } from 'react-native';
import {
Container,
Header,
Content,
Card,
CardItem,
Thumbnail,
Text,
@pojntfx
pojntfx / google-chrome-flatpak
Last active June 11, 2019 08:42 — forked from cho2/google-chrome-flatpak
Google Chrome Flatpak
flatpak remote-add --user --no-gpg-verify chrome http://blog.kukuh.syafaat.id/google-chrome-flatpak-repo-testing/repo
flatpak install --user chrome com.google.Chrome
git clone git@github.com:endlessm/eos-google-chrome-app.git
cd eos-google-chrome-app
chmod +x eos-google-chrome-app
./eos-google-chrome-app
@pojntfx
pojntfx / install.sh
Created August 29, 2019 11:42
Install Infractl
curl -L https://gitlab.com/pojntfx/pojntfx/-/jobs/artifacts/master/download?job=infractl -o /tmp/infractl.zip && unzip /tmp/infractl.zip -d /tmp/infractl && sudo cp /tmp/infractl/packages/infractl/dist/infractl-linux /tmp/infractl/packages/infractl/dist/infractl && sudo install /tmp/infractl/packages/infractl/dist/infractl /usr/local/bin
@pojntfx
pojntfx / init.vim
Created October 24, 2019 00:44
@pojnfx' neovim configuration
" Install plugins
call plug#begin('~/.config/nvim/autoload/plug.vim')
Plug 'https://github.com/cohama/lexima.vim'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'ctrlpvim/ctrlp.vim'
Plug 'severin-lemaignan/vim-minimap'
Plug 'tacahiroy/ctrlp-funky'
Plug 'fisadev/vim-ctrlp-cmdpalette'
Plug 'scrooloose/nerdtree'
@pojntfx
pojntfx / .vimrc
Last active October 24, 2019 00:46
@pojntfx' Vim configuration
" Install vim-plug if it's not already installed
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
endif
" Install plugins
call plug#begin()
@pojntfx
pojntfx / .Xresources
Last active November 2, 2019 13:54
My suckless Alpine dotfiles
Xft.dpi: 220
Xcursor.theme: Adwaita
Xcursor.size: 42
@pojntfx
pojntfx / .zprofile
Last active November 6, 2019 19:52
Zsh Configuration
export EDITOR=`which nvim`
@pojntfx
pojntfx / init.vim
Last active November 10, 2019 10:18
Neovim Configuration
" Install plugins
if has("nvim")
call plug#begin('~/.config/nvim/autoload/plug.vim')
else
call plug#begin()
endif
Plug 'https://github.com/cohama/lexima.vim'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'ctrlpvim/ctrlp.vim'
@pojntfx
pojntfx / .tmux.conf
Last active November 14, 2019 17:27
tmux Configuration
set-window-option -g mode-keys vi
set -g status off
set -sg escape-time 0
bind m set-window-option main-pane-height 60\; select-layout main-horizontal
bind-key h select-layout even-horizontal
bind-key v select-layout even-vertical
bind-key j join-pane -t 0.0
bind-key -n C-a send-prefix
bind -n M-h select-pane -L
bind -n M-l select-pane -R