no which key

This commit is contained in:
Tyrel Souza 2023-01-02 13:31:11 -05:00
parent 05cb6c558b
commit 887fa6020a
1 changed files with 2 additions and 7 deletions

View File

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