Skip to content

Instantly share code, notes, and snippets.

View davrux's full-sized avatar

Meik Kreyenkötter davrux

  • C-137
View GitHub Profile
@davrux
davrux / .screenrc
Created September 25, 2023 13:29
.screenrc
# Don't display the copyright page
startup_message off # default: on
# Use Ctrl-o
escape ^Oo
# Unbind lock screen
bind x
bind w windowlist
bind % split
@davrux
davrux / .golangci.yml
Created July 28, 2023 12:53
Golangci Lint
#
# Standard golangci settings.
#
# The line-length-limit is disabled by default. Set it to a value appropriate
# for your project. When using swagger inline definitions the lines can become
# long.
#
# Look for gosec settings. Check if TLS and an unsecure rand generator is
# appropriate for your project. Never allow G404 for cryptographic input! G402
# must be used with caution.
@davrux
davrux / starship.toml
Last active September 22, 2023 06:19
starship.toml
# A minimal left prompt
#format = """$username$hostname$directory $character"""
# move the rest of the prompt to the right
#right_format = """$all"""
#format = '''
#\[ $git_branch$kubernetes$aws\]
#$username$hostname$directory$character
#'''
format = '''$username$hostname$directory$character'''
# No login shell
set -g default-command "${SHELL}"
# remap prefix to CTRL + .
set -g prefix C-o
unbind C-b
bind-key C-o send-prefix
# Use emacs mode
setw -g mode-keys emacs