no which key

This commit is contained in:
Tyrel Souza 2023-01-02 13:31:11 -05:00
parent 05cb6c558b
commit 887fa6020a

View File

@ -26,7 +26,6 @@ call plug#begin('~/.vim/plugged')
Plug 'thoughtbot/vim-rspec' Plug 'thoughtbot/vim-rspec'
Plug 'voldikss/vim-floaterm' Plug 'voldikss/vim-floaterm'
Plug 'fatih/vim-go' Plug 'fatih/vim-go'
Plug 'folke/which-key.nvim'
Plug 'whatyouhide/vim-gotham' Plug 'whatyouhide/vim-gotham'
Plug 'nanotech/jellybeans.vim' Plug 'nanotech/jellybeans.vim'
Plug 'sickill/vim-monokai' Plug 'sickill/vim-monokai'
@ -37,13 +36,8 @@ call plug#begin('~/.vim/plugged')
Plug 'gf3/peg.vim' Plug 'gf3/peg.vim'
call plug#end() call plug#end()
lua << EOF
require("which-key").setup {
}
EOF
map <C-o> :NERDTreeToggle<CR> map <C-o> :NERDTreeToggle<CR>
map <Leader>v :WhichKey<CR>
set tabstop=2 set tabstop=2
@ -55,6 +49,7 @@ set autoindent
set preserveindent set preserveindent
set copyindent set copyindent
set mouse= set mouse=
set shell=~/.nix-profile/bin/fish
" Set Colors " Set Colors
if (has("termguicolors")) if (has("termguicolors"))
@ -151,7 +146,7 @@ require'nvim-treesitter.configs'.setup {
enable = true, enable = true,
-- list of language that will be disabled -- list of language that will be disabled
disable = {"vim", "c", "rust"}, disable = {},
-- Setting this to true will run `:h syntax` and tree-sitter at the same time. -- Setting this to true will run `:h syntax` and tree-sitter at the same time.
-- Set this to `true` if you depend on 'syntax' being enabled (like for indentation). -- Set this to `true` if you depend on 'syntax' being enabled (like for indentation).