diff options
| -rw-r--r-- | .config/nvim/after/plugin/lsp.lua | 1 | ||||
| -rw-r--r-- | .config/nvim/after/plugin/whichkey.lua | 2 | ||||
| -rw-r--r-- | .config/zsh/alias.zsh | 6 | ||||
| -rwxr-xr-x | .local/bin/kb | 2 | 
4 files changed, 6 insertions, 5 deletions
| diff --git a/.config/nvim/after/plugin/lsp.lua b/.config/nvim/after/plugin/lsp.lua index 11801f8..767dec5 100644 --- a/.config/nvim/after/plugin/lsp.lua +++ b/.config/nvim/after/plugin/lsp.lua @@ -32,6 +32,7 @@ require('mason-lspconfig').setup({  		'ltex',  		'perlnavigator',  		'clangd', +		'yamlls',  	},    handlers = {      lsp.default_setup, diff --git a/.config/nvim/after/plugin/whichkey.lua b/.config/nvim/after/plugin/whichkey.lua index 6676d28..9aa8079 100644 --- a/.config/nvim/after/plugin/whichkey.lua +++ b/.config/nvim/after/plugin/whichkey.lua @@ -31,7 +31,7 @@ wk.register({  	},  	g = {  		name = 'git', -		s = { vim.cmd.Git, 'git' }, +		g = { vim.cmd.Git, 'git' },  		-- a = { ':Ag<CR>', 'the_silver_searcher', noremap = true, silent = true },  		-- g = { ':Grep<CR>', 'grep', noremap = true, silent = true },  		-- r = { ':Rg<CR>', 'ripgrep', noremap = true, silent = true }, diff --git a/.config/zsh/alias.zsh b/.config/zsh/alias.zsh index 0661a4e..888d8a3 100644 --- a/.config/zsh/alias.zsh +++ b/.config/zsh/alias.zsh @@ -22,11 +22,11 @@ alias \  	c='clear' \  	less='less --tabs 4' \  	bc='bc -l' \ -	mkf='gmake fclean' \  	mkc='gmake clean' \ -	mk='gmake -j5' \ +	mk='gmake -j12' \ +	mkr='gmake -j12 run'  	bmkc='make clean' \ -	bmk='make -j5' \ +	bmk='make -j12' \  	web='w3m https://duckduckgo.com/' \  	mpv='mpv --audio-channels=stereo' \  	bat='bat --style=plain --tabs 4 --paging=always -f' \ diff --git a/.local/bin/kb b/.local/bin/kb index 43e4cbb..198f2e7 100755 --- a/.local/bin/kb +++ b/.local/bin/kb @@ -47,7 +47,7 @@  xset r rate 200 150  setxkbmap -option  setxkbmap -layout us -variant intl -#if [ "$(hostname -s)" = "mother" ]; then +#if [ "$(hostname -s)" = "po-rbo" ]; then  #	setxkbmap -option ctrl:swapcaps  #	setxkbmap -option caps:none  #	xmodmap -e 'keycode 9 = Tab' | 
