all repos — dotfiles @ 974b677290a71dce76ad1845efdb004d9b79f124

my *nix dotfiles

nvim: Default to 'text' for files without extensions
Anirudh Oppiliappan x@icyphox.sh
Wed, 23 Dec 2020 18:17:32 +0530
commit

974b677290a71dce76ad1845efdb004d9b79f124

parent

c8890737cfa4a0e6aefea2be0ec6f4c7a555f602

2 files changed, 7 insertions(+), 0 deletions(-)

jump to
A config/fish/functions/gpa.fish

@@ -0,0 +1,4 @@

+# Defined in - @ line 1 +function gpa --wraps='git push all master' --description 'alias gpa=git push all master' + git push all master $argv; +end
M config/nvim/init.vimconfig/nvim/init.vim

@@ -82,6 +82,9 @@ let g:gitgutter_sign_removed = '-'

let g:gitgutter_sign_removed_first_line = '^' let g:gitgutter_sign_modified_removed = '#' +" default to text for files without extensions +au BufNewFile,BufRead * if &ft == '' | set ft=text | endif + " comments are italicized hi Comment cterm=italic " color overrides