1
0
Fork 0

nvim: no textwidth for playlists

This commit is contained in:
tastytea 2022-08-21 21:13:23 +02:00
parent 5da9c3fe13
commit 2e08f94b01
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
1 changed files with 6 additions and 0 deletions

View File

@ -32,3 +32,9 @@ vim.api.nvim_create_autocmd({ 'FileType' }, {
pattern = { 'gentoo-package-*' },
command = [[set tabstop=2 shiftwidth=2]]
})
vim.api.nvim_create_autocmd({ 'BufEnter' }, {
group = 'config_fileformats',
pattern = { '*.m3u8', '*.m3u' },
command = [[set textwidth=0]]
})