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 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