nvim, bashrc and alacritty

This commit is contained in:
joelchrono12 2021-09-13 20:12:35 -05:00
parent 4985b607cf
commit e866ea7836
Signed by: chrono
GPG Key ID: E23D9C7FA57497A6
3 changed files with 11 additions and 2 deletions

View File

@ -225,5 +225,6 @@ export GOBIN="$HOME/go/bin"
export GOPATH="$HOME/go"
export PATH="$PATH:$GOBIN"
#radicale --storage-filesystem-folder=~/.var/lib/radicale/collections &
export _JAVA_AWT_WM_NONREPARENTING=1
source /home/joelchrono12/.config/broot/launcher/bash/br

View File

@ -218,7 +218,7 @@ colors:
# Window opacity as a floating point number from `0.0` to `1.0`.
# The value `0.0` is completely transparent and `1.0` is opaque.
#background_opacity: 1.0
background_opacity: .6
background_opacity: 0.9
#selection:

View File

@ -2,6 +2,7 @@
source $HOME/.config/nvim/vim-plug/plugins.vim
syntax on
set encoding=utf-8
set tabstop=4 softtabstop=4
set shiftwidth=4
set expandtab
@ -74,3 +75,10 @@ let g:lightline = {
nmap <leader>gh :diffget //3<CR>
nmap <leader>gu :diffget //2<CR>
nmap <leader>gs :G<CR>
" GoTo code navigation.
nmap <silent> gd <Plug>(coc-definition)
nmap <silent> gy <Plug>(coc-type-definition)
nmap <silent> gi <Plug>(coc-implementation)
nmap <silent> gr <Plug>(coc-references)