Compare commits

...

6 Commits

4 changed files with 73 additions and 53 deletions

View File

@ -16,36 +16,31 @@ indent_size = tab
# Opinionated affecting only display, better to not set # Opinionated affecting only display, better to not set
#tab_width = #tab_width =
# Windows line-endings for Windows # *nix, just in case
[*.{reg,bat,ahk}]
end_of_line = crlf
# Let's ensure *nix is lf although it comes from defaults
# above
[*.{bash,sh}] [*.{bash,sh}]
end_of_line = lf end_of_line = lf
# Crystal https://crystal-lang.org/reference/1.7/conventions/coding_style.html#indentation
[*.cr]
indent_style = space
indent_size = 2
# Markdown apparently allows linebreaks by two trailing spaces, while I # Markdown apparently allows linebreaks by two trailing spaces, while I
# never seem to do that, maybe I should accept it # never seem to do that, maybe I should accept it
[*.{markdown,md}] [*.{markdown,md}]
trim_trailing_whitespace = false trim_trailing_whitespace = false
# TAB Separated Values # Nim https://nim-lang.org/docs/nep1.html#introduction-spacing-and-whitespace-conventions
[*.{tsv,tab}] [*.nim]
indent_style = tab indent_style = space
indent_size = tab indent_size = 2
# empty last columns/fields max_line_length = 80
trim_trailing_whitespace = false
# Python https://peps.python.org/pep-0008/#indentation # Python https://peps.python.org/pep-0008/#indentation
[*.py] [*.py]
indent_style = space indent_style = space
indent_size = 4 indent_size = 4
max_line_length = 79
# YAML requires spaces
[*.{yaml,yml}]
indent_style = space
indent_size = 2
# Ruby # Ruby
#[*.rb] #[*.rb]
@ -54,3 +49,20 @@ indent_size = 2
# https://rubystyle.guide/#spaces-indentation # https://rubystyle.guide/#spaces-indentation
#indent_style = space #indent_style = space
#indent_size = 2 #indent_size = 2
# TAB Separated Values
[*.{tsv,tab}]
indent_style = tab
indent_size = tab
# empty last columns/fields
trim_trailing_whitespace = false
# Windows line-endings for Windows
[*.{reg,bat,ahk}]
end_of_line = crlf
# YAML requires spaces
[*.{yaml,yml}]
indent_style = space
indent_size = 2

View File

@ -19,7 +19,8 @@
}, },
"pulseaudio": { "pulseaudio": {
"format": "VOL {volume}%", "format": "VOL {volume}%",
"format-bluetooth": "BT VOL {volume}%" "format-bluetooth": "BT VOL {volume}%",
"ignored-sinks": ["Easy Effects Sink", "Easy Effects Source"]
}, },
"battery": { "battery": {
"states": { "states": {

View File

@ -0,0 +1,7 @@
[crystal]
name=Crystal
type=rpm-md
baseurl=https://download.opensuse.org/repositories/devel:languages:crystal/Fedora_$releasever/
gpgcheck=1
gpgkey=https://download.opensuse.org/repositories/devel:languages:crystal/Fedora_$releasever/repodata/repomd.xml.key
enabled=1