epic
This commit is contained in:
parent
37229ec103
commit
9bfc6b739a
6 changed files with 35 additions and 11 deletions
|
@ -33,16 +33,6 @@
|
||||||
"reason"
|
"reason"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"golang": {
|
|
||||||
"command": "gopls",
|
|
||||||
"rootPatterns": [
|
|
||||||
"go.mod"
|
|
||||||
],
|
|
||||||
"disableWorkspaceFolders": true,
|
|
||||||
"filetypes": [
|
|
||||||
"go"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"haskell": {
|
"haskell": {
|
||||||
"command": "ghcide",
|
"command": "ghcide",
|
||||||
"args": [
|
"args": [
|
||||||
|
|
|
@ -41,3 +41,9 @@ nmap <leader>f <Plug>(coc-format-selected)
|
||||||
xmap <leader>f <Plug>(coc-format-selected)
|
xmap <leader>f <Plug>(coc-format-selected)
|
||||||
|
|
||||||
inoremap <silent><expr> <c-space> coc#refresh()
|
inoremap <silent><expr> <c-space> coc#refresh()
|
||||||
|
|
||||||
|
xmap <leader>a <Plug>(coc-codeaction-selected)
|
||||||
|
nmap <leader>a <Plug>(coc-codeaction-selected)
|
||||||
|
|
||||||
|
nmap <leader>ac <Plug>(coc-codeaction)
|
||||||
|
nmap <leader>qf <Plug>(coc-fix-current)
|
||||||
|
|
|
@ -25,6 +25,9 @@ Plug 'cespare/vim-toml'
|
||||||
Plug 'godlygeek/tabular'
|
Plug 'godlygeek/tabular'
|
||||||
Plug 'plasticboy/vim-markdown'
|
Plug 'plasticboy/vim-markdown'
|
||||||
|
|
||||||
|
Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' }
|
||||||
|
let g:go_fmt_command = 'goimports'
|
||||||
|
|
||||||
let g:vim_markdown_new_list_item_indent = 2
|
let g:vim_markdown_new_list_item_indent = 2
|
||||||
let g:vim_markdown_folding_disabled = 1
|
let g:vim_markdown_folding_disabled = 1
|
||||||
let g:vim_markdown_toml_frontmatter = 1
|
let g:vim_markdown_toml_frontmatter = 1
|
||||||
|
|
|
@ -19,7 +19,7 @@ export EDITOR=nvim
|
||||||
|
|
||||||
source $HOME/.cargo/env
|
source $HOME/.cargo/env
|
||||||
|
|
||||||
export PATH="$HOME/.local/scripts:$HOME/.dotnet/tools:$PATH:$HOME/go/bin"
|
export PATH="$HOME/.local/bin:$HOME/.local/scripts:$HOME/.dotnet/tools:$PATH:$HOME/go/bin"
|
||||||
[ -f "${GHCUP_INSTALL_BASE_PREFIX:=$HOME}/.ghcup/env" ] && source "${GHCUP_INSTALL_BASE_PREFIX:=$HOME}/.ghcup/env"
|
[ -f "${GHCUP_INSTALL_BASE_PREFIX:=$HOME}/.ghcup/env" ] && source "${GHCUP_INSTALL_BASE_PREFIX:=$HOME}/.ghcup/env"
|
||||||
|
|
||||||
[[ -s /home/michael/.autojump/etc/profile.d/autojump.sh ]] && source /home/michael/.autojump/etc/profile.d/autojump.sh
|
[[ -s /home/michael/.autojump/etc/profile.d/autojump.sh ]] && source /home/michael/.autojump/etc/profile.d/autojump.sh
|
||||||
|
|
0
private_dot_ssh/.keep
Normal file
0
private_dot_ssh/.keep
Normal file
25
private_dot_ssh/config
Normal file
25
private_dot_ssh/config
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
Host argo
|
||||||
|
HostName argo.acm.umn.edu
|
||||||
|
User michael
|
||||||
|
|
||||||
|
Host kabe
|
||||||
|
HostName 159.65.217.204
|
||||||
|
User michael
|
||||||
|
|
||||||
|
Host homelab
|
||||||
|
HostName 142.93.75.170
|
||||||
|
User michael
|
||||||
|
|
||||||
|
Host gitea
|
||||||
|
HostName 142.93.75.170
|
||||||
|
# HostName 10.8.0.1
|
||||||
|
Port 2222
|
||||||
|
User git
|
||||||
|
|
||||||
|
Host r0
|
||||||
|
HostName rhimes0.sift.net
|
||||||
|
User mzhang
|
||||||
|
|
||||||
|
Host comm
|
||||||
|
User root
|
||||||
|
HostName 68.183.28.29
|
Loading…
Reference in a new issue