Add Idris, remove Lean
This commit is contained in:
parent
2a1499f652
commit
657cf3a87b
4 changed files with 5 additions and 10 deletions
|
@ -27,7 +27,7 @@ if [ -d "$HOME/.local/bin" ] ; then
|
|||
fi
|
||||
. "$HOME/.cargo/env"
|
||||
|
||||
# set path so it includes elan if it exists
|
||||
if [ -d "$HOME/.elan/bin" ]; then
|
||||
PATH="$HOME/.elan/bin:$PATH"
|
||||
# set path so it includes cabal bin if it exists
|
||||
if [ -d "$HOME/.cabal/bin" ]; then
|
||||
PATH="$HOME/.cabal/bin:$PATH"
|
||||
fi
|
||||
|
|
|
@ -3,7 +3,6 @@ let $FZF_DEFAULT_COMMAND='rg --files --follow --hidden -g "!{node_modules/*,.git
|
|||
source $HOME/.config/nvim/plug/plug.vim
|
||||
source $HOME/.config/nvim/plugs.vim
|
||||
|
||||
source $HOME/.config/nvim/lean.lua
|
||||
source $HOME/.config/nvim/rust.lua
|
||||
source $HOME/.config/nvim/completion.lua
|
||||
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
require('lean').setup{
|
||||
abbreviations = { builtin = true },
|
||||
mappings = true,
|
||||
}
|
|
@ -39,13 +39,13 @@ Plug 'hrsh7th/cmp-buffer', { 'branch': 'main' }
|
|||
" Rust support
|
||||
Plug 'simrat39/rust-tools.nvim'
|
||||
|
||||
" Lean theorem prover support
|
||||
Plug 'neovim/nvim-lspconfig'
|
||||
Plug 'nvim-lua/plenary.nvim'
|
||||
Plug 'Julian/lean.nvim'
|
||||
|
||||
" Coq support
|
||||
Plug 'whonore/Coqtail'
|
||||
|
||||
" Idris support
|
||||
Plug 'idris-hackers/idris-vim'
|
||||
|
||||
call plug#end()
|
||||
|
|
Loading…
Reference in a new issue