From 09d69f997b15f31c1d8870c00a1f1f5b88be1302 Mon Sep 17 00:00:00 2001 From: Michael Campagnaro Date: Sat, 22 Jan 2022 12:13:54 -0500 Subject: [PATCH] Cleanup --- configs/firefox/README.txt | 0 configs/firefox/userChrome.css | 10 ---------- vimrc | 4 ++++ 3 files changed, 4 insertions(+), 10 deletions(-) delete mode 100644 configs/firefox/README.txt delete mode 100644 configs/firefox/userChrome.css diff --git a/configs/firefox/README.txt b/configs/firefox/README.txt deleted file mode 100644 index e69de29..0000000 diff --git a/configs/firefox/userChrome.css b/configs/firefox/userChrome.css deleted file mode 100644 index e5bbe82..0000000 --- a/configs/firefox/userChrome.css +++ /dev/null @@ -1,10 +0,0 @@ -/* Hide the top tabs toolbar. - To install this: - * Go to your Firefox profile folder (look in %appdata%/Mozilla/Firefox/Profiles) - * Create a 'chrome' folder and place this there. - * In Firefox, go to about:config and set `toolkit.legacyUserProfileCustomizations.stylesheets` to true. - * Restart the browser. -*/ -#TabsToolbar { - display: none !important; -} \ No newline at end of file diff --git a/vimrc b/vimrc index 22de438..1e9c7e8 100644 --- a/vimrc +++ b/vimrc @@ -16,6 +16,8 @@ "################################################################################################### scriptencoding utf-8 +" @note If the file contains a BOM then vim will automatically set `bomb` for +" the buffer so that the BOM is written out again. set encoding=utf-8 fileencoding=utf-8 fileencodings=ucs-bom,utf8,prc set nocompatible filetype off @@ -647,6 +649,8 @@ function! DoSingleWriteThenQuit() quit endfunction +" @fixme Sometimes a :wa that saves multiple files causes vim to hang and use +" a lot of CPU. function! DoMultiWrite() let l:current_buffer = bufnr("%") bufdo wa