This commit is contained in:
ManjaroOne666 2019-02-18 20:52:37 +00:00
parent 22a55226c6
commit 9d8e497069
2 changed files with 15 additions and 2 deletions

1
ftplugin/fish.vim Normal file
View File

@ -0,0 +1 @@
:compiler fish

16
vimrc
View File

@ -1,5 +1,9 @@
" ● " ●
if &shell =~# 'fish$'
set shell=bash
endif
runtime vimrc-config runtime vimrc-config
let g:vimrc_load_dev_plugins = exists('g:vimrc_load_dev_plugins') let g:vimrc_load_dev_plugins = exists('g:vimrc_load_dev_plugins')
@ -87,12 +91,14 @@ let g:mta_filetypes = {
if executable('fzf') && v:version >= 704 if executable('fzf') && v:version >= 704
Plug 'junegunn/fzf.vim' Plug 'junegunn/fzf.vim'
nnoremap <space>fg :GFiles<CR>
nnoremap <space>ff :Files<CR> nnoremap <space>ff :Files<CR>
nnoremap <space>fr :History<CR>
nnoremap <space>ft :Tags<CR> nnoremap <space>ft :Tags<CR>
nnoremap <space>fb :Buffers<CR> nnoremap <space>fb :Buffers<CR>
nnoremap <space>fh :Helptags<CR> nnoremap <space>fh :Helptags<CR>
nnoremap <space>fa :Ag<CR> nnoremap <space>fa :Ag<CR>
nnoremap <space>fg :Ag!<CR> nnoremap <space>fA :Ag!<CR>
" Ag! gives fullscreen with preview " Ag! gives fullscreen with preview
command! -bang -nargs=* Ag command! -bang -nargs=* Ag
@ -123,6 +129,7 @@ endif
Plug 'plasticboy/vim-markdown' Plug 'plasticboy/vim-markdown'
let g:vim_markdown_toc_autofit = 1 let g:vim_markdown_toc_autofit = 1
let g:vim_markdown_fenced_languages = ['bash=sh'] let g:vim_markdown_fenced_languages = ['bash=sh']
" #vim-qlist {{{ " #vim-qlist {{{
" Original: https://github.com/romainl/vim-qlist " Original: https://github.com/romainl/vim-qlist
Plug 'studio-vx/vim-qlist' Plug 'studio-vx/vim-qlist'
@ -452,6 +459,11 @@ if g:vimrc_load_dev_plugins
" https://github.com/tpope/vim-dispatch " https://github.com/tpope/vim-dispatch
Plug 'tpope/vim-dispatch' Plug 'tpope/vim-dispatch'
"}}}
" #vim-fish{{{
" https://github.com/dag/vim-fish
Plug 'dag/vim-fish'
"}}} "}}}
" #vim-gutentags {{{ " #vim-gutentags {{{
" https://github.com/ludovicchabant/vim-gutentags " https://github.com/ludovicchabant/vim-gutentags
@ -1102,7 +1114,7 @@ set listchars=eol:¬,tab:>-,trail:~,extends:>,precedes:<,space:·
set foldtext=MyFoldText() set foldtext=MyFoldText()
set conceallevel=2 set conceallevel=2
set concealcursor=n set concealcursor=
"----------------------------------------------------------------------------}}} "----------------------------------------------------------------------------}}}
" #mappings {{{ " #mappings {{{
let g:mapleader = ' ' let g:mapleader = ' '