neovim linux
parent
00c571febd
commit
645adfdb42
@ -1,3 +1,11 @@
|
|||||||
if [[ -f "$HOME/.bashrc" ]]; then
|
if [[ -f "$HOME/.bashrc" ]]; then
|
||||||
source "$HOME/.bashrc"
|
source "$HOME/.bashrc"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [[ -f "$HOME/.cargo/env" ]]; then
|
||||||
|
source "$HOME/.cargo/env"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -f "$HOME/.nix-profile/etc/profile.d/nix.sh" ]]; then
|
||||||
|
source "$HOME/.nix-profile/etc/profile.d/nix.sh"
|
||||||
|
fi
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
nmap <F5> :Cargo run -q <CR>
|
nmap <F5> :Cargo run<CR>
|
||||||
nmap <F7> :Cargo check<CR>
|
nmap <F7> :Cargo check<CR>
|
||||||
nmap <F8> :Cargo test<CR>
|
nmap <F8> :Cargo test<CR>
|
||||||
|
|
||||||
|
nmap <C-]> :ALEGoToDefinition<CR>
|
||||||
|
Loading…
Reference in New Issue