Add fzf plugin and config
This commit is contained in:
parent
96eab3bea3
commit
6459177a8f
4
.gitmodules
vendored
4
.gitmodules
vendored
|
@ -55,3 +55,7 @@
|
|||
[submodule "pack/plugins/start/vim-toml"]
|
||||
path = pack/plugins/start/vim-toml
|
||||
url = https://github.com/cespare/vim-toml.git
|
||||
[submodule "pack/plugins/start/fzf"]
|
||||
path = pack/plugins/start/fzf
|
||||
url = git@github.com:junegunn/fzf.vim.git
|
||||
branch = master
|
||||
|
|
1
pack/plugins/start/fzf
Submodule
1
pack/plugins/start/fzf
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit d5f1f8641b24c0fd5b10a299824362a2a1b20ae0
|
5
vimrc
5
vimrc
|
@ -15,6 +15,9 @@ set noswapfile
|
|||
set updatetime=1000
|
||||
set signcolumn=yes
|
||||
|
||||
set rtp+=~/.fzf
|
||||
map ; :Files<CR>
|
||||
|
||||
colorscheme onehalfdark
|
||||
if exists('+termguicolors') && ($COLORTERM == "24bit" || $COLORTERM == "truecolor")
|
||||
let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum"
|
||||
|
@ -128,4 +131,4 @@ if has('python3')
|
|||
endif
|
||||
" Load all of the helptags now, after plugins have been loaded.
|
||||
" All messages and errors will be ignored.
|
||||
silent! helptags ALL
|
||||
" silent! helptags ALL
|
||||
|
|
Loading…
Reference in a new issue