Compare commits
2 commits
8a10a6fa18
...
5f1b53cb9e
Author | SHA1 | Date | |
---|---|---|---|
5f1b53cb9e | |||
3961e16804 |
2 changed files with 10 additions and 0 deletions
8
dotconfig/fish/functions/gitcd.fish
Normal file
8
dotconfig/fish/functions/gitcd.fish
Normal file
|
@ -0,0 +1,8 @@
|
|||
function gitcd
|
||||
if set -q argv[2]
|
||||
set clonedir $argv[2]
|
||||
else
|
||||
set clonedir (basename -s '.git' $argv[1])
|
||||
end
|
||||
git clone $argv[1] $clonedir && cd $clonedir
|
||||
end
|
|
@ -36,6 +36,8 @@ lsp_zero.on_attach(function(client, bufnr)
|
|||
}),
|
||||
})
|
||||
|
||||
-- inlay hints
|
||||
vim.lsp.inlay_hint.enable(true)
|
||||
|
||||
-- signature help
|
||||
require('lsp_signature').on_attach({ floating_window_above_cur_line = true }, bufnr)
|
||||
|
|
Loading…
Add table
Reference in a new issue