From 9c1d18d5b14e6f5227a6b750ab51ab71ef624c9c Mon Sep 17 00:00:00 2001 From: "Russell R. Riker" Date: Wed, 1 Sep 2021 18:45:41 -0400 Subject: [PATCH 1/2] Added support for gemini files to be seen as markdown --- nvim-basic-settings.vim | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nvim-basic-settings.vim b/nvim-basic-settings.vim index eb4bda7..29f141f 100644 --- a/nvim-basic-settings.vim +++ b/nvim-basic-settings.vim @@ -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 From 9a9586b990da3eb90f1669b63513aab3b37f8d1d Mon Sep 17 00:00:00 2001 From: "Russell R. Riker" Date: Sat, 14 May 2022 17:01:10 -0400 Subject: [PATCH 2/2] error runing fugitive plug in, removed it --- plugins-to-load.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins-to-load.vim b/plugins-to-load.vim index 26ea562..123c063 100644 --- a/plugins-to-load.vim +++ b/plugins-to-load.vim @@ -7,7 +7,7 @@ call plug#begin('~/.vim/plugged') Plug 'honza/vim-snippets' Plug 'preservim/nerdtree' " file manager Plug 'roxma/nvim-yarp' - Plug 'tpope/vim-fugitive' " git +" Plug 'tpope/vim-fugitive' " git Plug 'tpope/vim-rhubarb' Plug 'vim-airline/vim-airline' " cool status bar Plug 'airblade/vim-gitgutter' " git changes