1
0
mirror of https://codeberg.org/diginaut/dotfiles.git synced 2026-05-07 13:32:34 +02:00

7 Commits

Author SHA1 Message Date
diginaut 358dd8e6d1 If there's multiple discs, prepend tracks with the disc number 2021-06-18 15:30:48 +02:00
diginaut a00697759c This stuff is big 2021-06-18 14:29:18 +02:00
diginaut eb33471478 More logical layout 2021-06-18 14:04:32 +02:00
diginaut 2158c887cc Beets has its own dir now 2021-06-18 13:37:58 +02:00
diginaut e0861ac757 Playing around with beets music manager 2021-06-18 13:29:33 +02:00
Michiel Scholten 4648ba6ff6 Merge pull request #2 from aquatix/vim-todo
Vim todo
2021-05-04 17:53:58 +02:00
diginaut 570bfcceb2 Python requirements.txt syntax highlighting 2021-05-04 17:52:50 +02:00
2 changed files with 58 additions and 0 deletions
+55
View File
@@ -0,0 +1,55 @@
directory: /stuff/beets/music
library: /stuff/beets/musiclibrary.db
art_filename: cover
asciify_paths: yes
per_disc_numbering: yes
threaded: yes
paths:
# default: $albumartist/$year - $album/$track $artist - $title
default: %the{$albumartist}/$year - $album%aunique{}/%if{$multidisc,$disc-}$track $artist - $title
singleton: Singletons/$artist - $title
comp: Compilations/$album%aunique{}/%if{$multidisc,$disc-}$track $artist - $title
albumtype:soundtrack: Soundtracks/$album%aunique{}/%if{$multidisc,$disc-}$track $artist - $title
import:
write: yes
copy: yes
move: no
resume: ask
#incremental: yes
log: beetslog.log
ignore: .AppleDouble ._* *~ .DS_Store
plugins: [
discogs,
duplicates,
embedart,
fetchart,
ftintitle,
importadded,
inline,
the,
]
discogs:
# pip install discogs-client
# Useful for classical music:
index_tracks: yes
fetchart:
# pip install requests
cautious: true
ftintitle:
auto: yes
format: (feat. {0})
importadded:
preserve_mtimes: yes
preserve_write_mtimes: yes
item_fields:
multidisc: 1 if disctotal > 1 else 0
+3
View File
@@ -376,6 +376,9 @@ endif
" Improved Django handling " Improved Django handling
Plug 'tweekmonster/django-plus.vim' Plug 'tweekmonster/django-plus.vim'
" requirements.txt highlighter
Plug 'raimon49/requirements.txt.vim', {'for': 'requirements'}
" Code checker. For python, install flake8 or pylint, preferably in the " Code checker. For python, install flake8 or pylint, preferably in the
" virtualenv. For Django support, install pylint-django " virtualenv. For Django support, install pylint-django