Added support for gemini files to be seen as markdown

This commit is contained in:
Russell R. 2021-09-01 18:45:41 -04:00
parent 623c2bef1f
commit 9c1d18d5b1
1 changed files with 4 additions and 1 deletions

View File

@ -27,6 +27,9 @@ set expandtab
: autocmd BufLeave,FocusLost,InsertEnter * set norelativenumber
:augroup END
" set it to treat gemini files like markdown files
au! BufRead,BufNewFile *.gmi set filetype=markdown
" turn spelling on for text based documents
autocmd FileType txt,tex,latex,markdown setlocal spell spelllang=en_us
@ -40,7 +43,7 @@ let g:vimwiki_list = [{'path': '~/vimwiki/',
set termguicolors " turn on true colors, since ny term supports that
colorscheme cobalt2 " set the colorscheme
set cursorline " Should kind of highlight what ever line the cursor is on, to make it easy to find
"set cursorline " Should kind of highlight what ever line the cursor is on, to make it easy to find
set colorcolumn=100 " Put a highlighted colume at the 100 space mark. Just so we can see a really long line, like this one.
set wildmode=longest,list,full