ch ch ch ch changes
This commit is contained in:
parent
adc3e52ec4
commit
3272bf6d35
7 changed files with 33 additions and 20 deletions
|
@ -336,7 +336,7 @@ call <sid>hi("ALEInfoSign", s:blue_grey_500, "", "italic")
|
||||||
|
|
||||||
call <sid>hi("Statement", s:blue_grey_200, "", "bold")
|
call <sid>hi("Statement", s:blue_grey_200, "", "bold")
|
||||||
call <sid>hi("String", s:light_green_400, "", "italic")
|
call <sid>hi("String", s:light_green_400, "", "italic")
|
||||||
call <sid>hi("Comment", s:blue_grey_600, "", "italic")
|
call <sid>hi("Comment", s:blue_grey_600, "", "bold,italic")
|
||||||
call <sid>hi("Type", s:deep_purple_100, "", "none")
|
call <sid>hi("Type", s:deep_purple_100, "", "none")
|
||||||
call <sid>hi("Identifier", s:orange_200, "", "")
|
call <sid>hi("Identifier", s:orange_200, "", "")
|
||||||
call <sid>hi("goFunction", s:blue_300, "", "bold")
|
call <sid>hi("goFunction", s:blue_300, "", "bold")
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
call plug#begin('~/.local/share/nvim/plugged')
|
call plug#begin('~/.local/share/nvim/plugged')
|
||||||
|
|
||||||
Plug 'dln/nvim-highlite'
|
Plug 'tjdevries/colorbuddy.vim'
|
||||||
Plug 'bluz71/vim-moonfly-colors'
|
Plug 'tjdevries/gruvbuddy.nvim'
|
||||||
|
Plug '~/src/github.com/shelmangroup/nvim-shelman-theme'
|
||||||
|
|
||||||
Plug 'neovim/nvim-lspconfig'
|
Plug 'neovim/nvim-lspconfig'
|
||||||
Plug 'nvim-lua/completion-nvim'
|
Plug 'nvim-lua/completion-nvim'
|
||||||
|
@ -156,8 +157,9 @@ let g:miniBufExplMapWindowNavVim = 1
|
||||||
let g:miniBufExplVSplit = 25
|
let g:miniBufExplVSplit = 25
|
||||||
let g:miniBufExplSplitBelow=1
|
let g:miniBufExplSplitBelow=1
|
||||||
|
|
||||||
"" Wayland clipboard copy paste
|
|
||||||
map <silent> ,v :r!wl-paste<cr>
|
"" minimap
|
||||||
|
let g:minimap_auto_start = 1
|
||||||
|
|
||||||
|
|
||||||
"" Searching
|
"" Searching
|
||||||
|
@ -312,24 +314,28 @@ nnoremap <silent> gW <cmd>lua vim.lsp.buf.workspace_symbol()<CR>
|
||||||
nnoremap <silent> gd <cmd>lua vim.lsp.buf.declaration()<CR>
|
nnoremap <silent> gd <cmd>lua vim.lsp.buf.declaration()<CR>
|
||||||
|
|
||||||
:lua << END
|
:lua << END
|
||||||
require'nvim_lsp'.gopls.setup{
|
require'lspconfig'.gopls.setup{
|
||||||
on_attach=require'diagnostic'.on_attach
|
on_attach=require'diagnostic'.on_attach
|
||||||
}
|
}
|
||||||
|
|
||||||
require'nvim_lsp'.jdtls.setup{
|
require'lspconfig'.jdtls.setup{
|
||||||
on_attach=require'diagnostic'.on_attach
|
on_attach=require'diagnostic'.on_attach
|
||||||
}
|
}
|
||||||
|
|
||||||
require'nvim_lsp'.terraformls.setup{
|
require'lspconfig'.sumneko_lua.setup{
|
||||||
|
cmd = {"lua-language-server"};
|
||||||
|
}
|
||||||
|
|
||||||
|
require'lspconfig'.terraformls.setup{
|
||||||
on_attach=require'diagnostic'.on_attach,
|
on_attach=require'diagnostic'.on_attach,
|
||||||
cmd = {'terraform-ls', 'serve'}
|
cmd = {'terraform-ls', 'serve'}
|
||||||
}
|
}
|
||||||
|
|
||||||
require'nvim_lsp'.vimls.setup{
|
require'lspconfig'.vimls.setup{
|
||||||
on_attach=require'diagnostic'.on_attach
|
on_attach=require'diagnostic'.on_attach
|
||||||
}
|
}
|
||||||
|
|
||||||
require'nvim_lsp'.yamlls.setup{
|
require'lspconfig'.yamlls.setup{
|
||||||
on_attach=require'diagnostic'.on_attach
|
on_attach=require'diagnostic'.on_attach
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -338,7 +344,7 @@ END
|
||||||
nmap <tab> <Plug>(completion_smart_tab)
|
nmap <tab> <Plug>(completion_smart_tab)
|
||||||
nmap <s-tab> <Plug>(completion_smart_s_tab)
|
nmap <s-tab> <Plug>(completion_smart_s_tab)
|
||||||
let g:completion_chain_complete_list = [
|
let g:completion_chain_complete_list = [
|
||||||
\{'complete_items': ['lsp', 'snippet']},
|
\{'complete_items': ['lsp', 'buffers', 'snippet']},
|
||||||
\{'mode': '<c-p>'},
|
\{'mode': '<c-p>'},
|
||||||
\{'mode': '<c-n>'}
|
\{'mode': '<c-n>'}
|
||||||
\]
|
\]
|
||||||
|
@ -355,9 +361,9 @@ let g:diagnostic_insert_delay = 1
|
||||||
let g:diagnostic_virtual_text_prefix = '⟸ '
|
let g:diagnostic_virtual_text_prefix = '⟸ '
|
||||||
|
|
||||||
call sign_define("LspDiagnosticsErrorSign", {"text" : "🔥", "texthl" : "LspDiagnosticsError"})
|
call sign_define("LspDiagnosticsErrorSign", {"text" : "🔥", "texthl" : "LspDiagnosticsError"})
|
||||||
call sign_define("LspDiagnosticsWarningSign", {"text" : "⚠", "texthl" : "LspDiagnosticsWarning"})
|
call sign_define("LspDiagnosticsWarningSign", {"text" : "🎃", "texthl" : "LspDiagnosticsWarning"})
|
||||||
call sign_define("LspDiagnosticsInformationSign", {"text" : "I", "texthl" : "LspDiagnosticsInformation"})
|
call sign_define("LspDiagnosticsInformationSign", {"text" : "I", "texthl" : "LspDiagnosticsInformation"})
|
||||||
call sign_define("LspDiagnosticsHintSign", {"text" : "H", "texthl" : "LspDiagnosticsHint"})
|
call sign_define("LspDiagnosticsHintSign", {"text" : "💡", "texthl" : "LspDiagnosticsHint"})
|
||||||
|
|
||||||
let g:completion_matching_strategy_list = ['exact', 'substring', 'fuzzy', 'all']
|
let g:completion_matching_strategy_list = ['exact', 'substring', 'fuzzy', 'all']
|
||||||
set completeopt=menuone,noinsert,noselect
|
set completeopt=menuone,noinsert,noselect
|
||||||
|
@ -512,5 +518,6 @@ set t_Cs = "\e[4:3m"
|
||||||
set t_Ce = "\e[4:0m"
|
set t_Ce = "\e[4:0m"
|
||||||
|
|
||||||
|
|
||||||
color dln
|
lua require('colorbuddy').colorscheme('shelman-dark')
|
||||||
map ,l :color dln<CR>
|
|
||||||
|
map ,l :luafile %<CR>
|
||||||
|
|
|
@ -6,4 +6,3 @@
|
||||||
--colors=match:style:nobold
|
--colors=match:style:nobold
|
||||||
--colors=match:bg:180,150,40
|
--colors=match:bg:180,150,40
|
||||||
--colors=match:fg:0,0,0
|
--colors=match:fg:0,0,0
|
||||||
--max-columns=150
|
|
||||||
|
|
2
.vault
2
.vault
|
@ -1 +1 @@
|
||||||
token_helper = "/home/dln/bin/vault-token-helper.sh"
|
token_helper = "/home/dln/bin/vault-token-helper"
|
6
.zshrc
6
.zshrc
|
@ -109,18 +109,20 @@ export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
|
||||||
|
|
||||||
|
|
||||||
## Pager
|
## Pager
|
||||||
export LESS="--mouse --wheel-lines=1 -nRX"
|
export LESS="--mouse --wheel-lines=1 -nRXF"
|
||||||
|
|
||||||
## Aliases
|
## Aliases
|
||||||
alias cdiff='colordiff -u'
|
|
||||||
alias dotgit='git --work-tree $HOME --git-dir $HOME/.dot_git'
|
alias dotgit='git --work-tree $HOME --git-dir $HOME/.dot_git'
|
||||||
alias l=bat
|
alias l=bat
|
||||||
alias ls=exa
|
alias ls=exa
|
||||||
alias tail='tail -n $LINES'
|
alias tail='tail -n $LINES'
|
||||||
alias timestamp='TZ=Z date "+%Y%m%dT%H%M%SZ"'
|
alias timestamp='TZ=Z date "+%Y%m%dT%H%M%SZ"'
|
||||||
alias tree='exa --tree'
|
alias tree='exa --tree'
|
||||||
|
alias v=vgrep
|
||||||
|
alias ve='env EDITOR= vgrep -s'
|
||||||
alias xc='xclip -selection clipboard'
|
alias xc='xclip -selection clipboard'
|
||||||
|
|
||||||
|
|
||||||
## vim
|
## vim
|
||||||
export EDITOR=nvim
|
export EDITOR=nvim
|
||||||
export NVIM_LISTEN_ADDRESS=/tmp/nvimsocket
|
export NVIM_LISTEN_ADDRESS=/tmp/nvimsocket
|
||||||
|
|
2
bin/gren
2
bin/gren
|
@ -11,6 +11,6 @@ hub sync
|
||||||
if git rev-parse --verify --quiet $1; then
|
if git rev-parse --verify --quiet $1; then
|
||||||
git checkout $1
|
git checkout $1
|
||||||
else
|
else
|
||||||
git checkout -b $1 master
|
git checkout -b $1 main
|
||||||
git push -u origin $1
|
git push -u origin $1
|
||||||
fi
|
fi
|
||||||
|
|
5
bin/tmux-nvr
Executable file
5
bin/tmux-nvr
Executable file
|
@ -0,0 +1,5 @@
|
||||||
|
#!/bin/bash
|
||||||
|
tmux select-window -t1
|
||||||
|
FILE="$1"
|
||||||
|
shift
|
||||||
|
exec nvr --remote "$@" $(readlink -f "$FILE")
|
Loading…
Reference in a new issue