From f42c179cf0f746c424e4c3c86c52b0ba229a8570 Mon Sep 17 00:00:00 2001 From: Fredrik Ekre Date: Fri, 7 Jun 2024 11:31:52 +0200 Subject: [PATCH] [nvim] Add autocommand for the Julia file type --- .vimrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.vimrc b/.vimrc index 34007d3..c570091 100644 --- a/.vimrc +++ b/.vimrc @@ -122,3 +122,8 @@ augroup SaveFileView au BufWinLeave *.* mkview au BufWinEnter *.* silent! loadview augroup END + +augroup FileTypeJulia + autocmd! + au FileType julia set textwidth=92 +augroup END