Skip to content

Instantly share code, notes, and snippets.

View yngvark's full-sized avatar

Yngvar Kristiansen yngvark

  • Oslo Kommune
  • Oslo, Norway
View GitHub Profile
# vim:fileencoding=utf-8:foldmethod=marker
#: Fonts {{{
#: kitty has very powerful font management. You can configure
#: individual font faces and even specify special fonts for particular
#: characters.
# font_family monospace
# bold_font auto
# Generated by Powerlevel10k configuration wizard on 2024-02-15 at 13:46 CET.
# Based on romkatv/powerlevel10k/config/p10k-rainbow.zsh, checksum 4117.
# Wizard options: nerdfont-v3 + powerline, small icons, rainbow, unicode, 24h time,
# round separators, round heads, flat tails, 2 lines, solid, full frame,
# lightest-ornaments, sparse, many icons, concise, instant_prompt=verbose.
# Type `p10k configure` to generate another config.
#
# Config for Powerlevel10k with powerline prompt style with colorful background.
# Type `p10k configure` to generate your own config based on it.
#
@yngvark
yngvark / test.md
Created December 15, 2023 10:16
test markdown alerts

Note

Useful information that users should know, even when skimming content.

Tip

Helpful advice for doing things better or more easily.

Important

Key information users need to know to achieve their goal.

[!WARNING]

// Security group
resource "aws_security_group" "alb" {
name = "${local.environment}-alb-public"
description = "Used by the public internet-facing load balancer"
vpc_id = module.data_networking.vpc_id
tags = local.common_tags
}
//
var stackStatusValues []StackStatus
type StackStatus string
//goland:noinspection GoUnusedGlobalVariable
var (
StackStatusDeleteInProgress = newStackStatus("DELETE_IN_PROGRESS")
StackStatusCreateComplete = newStackStatus("CREATE_COMPLETE")
StackStatusDeleteFailed = newStackStatus("DELETE_FAILED")