update astronomix
This commit is contained in:
38
.vimrc
38
.vimrc
@ -8,14 +8,17 @@ call vundle#begin()
|
||||
"call vundle#begin('~/some/path/here')
|
||||
|
||||
" let Vundle manage Vundle, required
|
||||
Plugin 'gmarik/Vundle.vim'
|
||||
" Plugin 'gmarik/Vundle.vim'
|
||||
Plugin 'tomasiser/vim-code-dark'
|
||||
|
||||
" The following are examples of different formats supported.
|
||||
" Keep Plugin commands between vundle#begin/end.
|
||||
" plugin on GitHub repo
|
||||
Plugin 'tpope/vim-fugitive'
|
||||
Plugin 'borissov/fugitive-gitea'
|
||||
Plugin 'airblade/vim-gitgutter'
|
||||
" plugin from http://vim-scripts.org/vim/scripts.html
|
||||
Plugin 'L9'
|
||||
" Plugin 'L9'
|
||||
" Git plugin not hosted on GitHub
|
||||
Plugin 'git://git.wincent.com/command-t.git'
|
||||
" git repos on your local machine (i.e. when working on your own plugin)
|
||||
@ -29,8 +32,9 @@ Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
|
||||
Plugin 'godlygeek/tabular'
|
||||
Plugin 'plasticboy/vim-markdown'
|
||||
Plugin 'iamcco/markdown-preview.nvim', { 'do': 'cd app & yarn install' }
|
||||
Plugin 'junegunn/limelight.vim'
|
||||
" Plugin 'junegunn/limelight.vim'
|
||||
Plugin 'junegunn/goyo.vim'
|
||||
Plugin 'tenfyzhong/joplin.vim'
|
||||
|
||||
|
||||
|
||||
@ -57,6 +61,29 @@ set omnifunc=syntaxcomplete#Complete
|
||||
" filetype indent on
|
||||
" filetype plugin on
|
||||
"endif
|
||||
let g:NetrwIsOpen=0
|
||||
let g:netrw_winsize=20
|
||||
let g:netrw_banner=0
|
||||
let g:netrw_liststyle=3
|
||||
|
||||
function! ToggleNetrw()
|
||||
if g:NetrwIsOpen
|
||||
let i = bufnr("$")
|
||||
while (i >= 1)
|
||||
if (getbufvar(i, "&filetype") == "netrw")
|
||||
silent exe "bwipeout " . i
|
||||
endif
|
||||
let i-=1
|
||||
endwhile
|
||||
let g:NetrwIsOpen=0
|
||||
else
|
||||
let g:NetrwIsOpen=1
|
||||
silent Lexplore
|
||||
endif
|
||||
endfunction
|
||||
|
||||
" Add your own mapping. For example:
|
||||
noremap <silent> <C-E> :call ToggleNetrw()<CR>
|
||||
|
||||
augroup gentoo
|
||||
au!
|
||||
@ -100,9 +127,10 @@ augroup gentoo
|
||||
\ endif
|
||||
|
||||
augroup END
|
||||
|
||||
let g:fugitive_gitea_domains = ['https://git.octron.sx']
|
||||
let g:joplin_token = '2088e4d6cb0559a4ea6e1559fb88ecdb3e194a6470a8489ce740ba92055dcb510e1854609e7f232438d8e8754f863a0501044f44a229a34ad5d9933f04baa4fe'
|
||||
|
||||
syntax on
|
||||
|
||||
set number
|
||||
set relativenumber
|
||||
|
||||
|
||||
Reference in New Issue
Block a user