move options to actual plugin scope
This commit is contained in:
@@ -3,8 +3,6 @@ if ($TERM=~"xterm-256color" || $TERM=~"screen-256color") || exists('g:GtkGuiLoad
|
|||||||
Plug 'cloudhead/neovim-fuzzy'
|
Plug 'cloudhead/neovim-fuzzy'
|
||||||
Plug 'mhinz/vim-signify'
|
Plug 'mhinz/vim-signify'
|
||||||
Plug 'overcache/NeoSolarized'
|
Plug 'overcache/NeoSolarized'
|
||||||
|
|
||||||
" language plugins
|
|
||||||
Plug 'LnL7/vim-nix'
|
Plug 'LnL7/vim-nix'
|
||||||
Plug 'neovimhaskell/haskell-vim'
|
Plug 'neovimhaskell/haskell-vim'
|
||||||
call plug#end()
|
call plug#end()
|
||||||
@@ -13,6 +11,11 @@ if ($TERM=~"xterm-256color" || $TERM=~"screen-256color") || exists('g:GtkGuiLoad
|
|||||||
set background=light
|
set background=light
|
||||||
set termguicolors
|
set termguicolors
|
||||||
|
|
||||||
|
" https://github.com/cloudhead/neovim-fuzzy/issues/50
|
||||||
|
let g:fuzzy_rootcmds = [["git", "rev-parse", "--show-toplevel"]]
|
||||||
|
|
||||||
|
map <silent> <C-P> :FuzzyOpen<CR>
|
||||||
|
|
||||||
if exists('g:GtkGuiLoaded')
|
if exists('g:GtkGuiLoaded')
|
||||||
call rpcnotify(1, 'Gui', 'Font', 'Fantasque Sans Mono 13')
|
call rpcnotify(1, 'Gui', 'Font', 'Fantasque Sans Mono 13')
|
||||||
endif
|
endif
|
||||||
@@ -22,9 +25,6 @@ filetype plugin indent on
|
|||||||
|
|
||||||
let g:markdown_fenced_languages = ['python', 'bash=sh', 'go', 'c', 'cpp', 'yaml', 'json', 'sql', 'haskell']
|
let g:markdown_fenced_languages = ['python', 'bash=sh', 'go', 'c', 'cpp', 'yaml', 'json', 'sql', 'haskell']
|
||||||
|
|
||||||
" https://github.com/cloudhead/neovim-fuzzy/issues/50
|
|
||||||
let g:fuzzy_rootcmds = [["git", "rev-parse", "--show-toplevel"]]
|
|
||||||
|
|
||||||
set autoindent
|
set autoindent
|
||||||
set autoread
|
set autoread
|
||||||
set autowrite
|
set autowrite
|
||||||
@@ -58,8 +58,6 @@ nnoremap <silent> <esc><esc> :nohls<CR>
|
|||||||
nnoremap <silent> gB :bp<CR>
|
nnoremap <silent> gB :bp<CR>
|
||||||
nnoremap <silent> gb :bn<CR>
|
nnoremap <silent> gb :bn<CR>
|
||||||
|
|
||||||
map <silent> <C-P> :FuzzyOpen<CR>
|
|
||||||
|
|
||||||
"noremap p p`[
|
"noremap p p`[
|
||||||
"noremap P P`[
|
"noremap P P`[
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user