Update
This commit is contained in:
@@ -120,12 +120,17 @@ lua << EOF
|
|||||||
-- telescope
|
-- telescope
|
||||||
|
|
||||||
require('telescope').setup{
|
require('telescope').setup{
|
||||||
|
-- defaults = {
|
||||||
|
-- layout_config = {
|
||||||
|
-- vertical = { width = 0.9 }
|
||||||
|
-- }
|
||||||
|
-- },
|
||||||
pickers = {
|
pickers = {
|
||||||
find_files = {
|
find_files = {
|
||||||
theme = "dropdown",
|
theme = "ivy",
|
||||||
},
|
},
|
||||||
live_grep = {
|
live_grep = {
|
||||||
theme = "dropdown",
|
theme = "ivy",
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
@@ -199,7 +204,7 @@ capabilities = require('cmp_nvim_lsp').update_capabilities(capabilities)
|
|||||||
for _, lsp in ipairs(servers) do
|
for _, lsp in ipairs(servers) do
|
||||||
nvim_lsp[lsp].setup {
|
nvim_lsp[lsp].setup {
|
||||||
flags = {
|
flags = {
|
||||||
debounce_text_changes = 150,
|
debounce_text_changes = 400,
|
||||||
},
|
},
|
||||||
on_attach = on_attach,
|
on_attach = on_attach,
|
||||||
capabilities = capabilities
|
capabilities = capabilities
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
--prefer-free-formats
|
--prefer-free-formats
|
||||||
--mark-watched
|
--mark-watched
|
||||||
-f mp4+best/mp4+bestaudio/bestvideo+bestaudio/best
|
-f bestvideo[height<=?1080]+bestaudio/best
|
||||||
--retries infinite
|
--retries infinite
|
||||||
--socket-timeout 1
|
--socket-timeout 1
|
||||||
--external-downloader aria2c
|
--external-downloader aria2c
|
||||||
|
|||||||
@@ -23,5 +23,6 @@ report*.json
|
|||||||
.clinic/
|
.clinic/
|
||||||
|
|
||||||
/.elixir_ls/
|
/.elixir_ls/
|
||||||
|
/.ignore/
|
||||||
|
|
||||||
.gitignore.local
|
.gitignore.local
|
||||||
|
|||||||
4
profile
4
profile
@@ -45,6 +45,10 @@ if [ -d $HOME/.cargo/bin ] ; then
|
|||||||
export PATH="$HOME/.cargo/bin:$PATH"
|
export PATH="$HOME/.cargo/bin:$PATH"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ -d $GOPATH/bin ] ; then
|
||||||
|
export PATH="$GOPATH/bin:$PATH"
|
||||||
|
fi
|
||||||
|
|
||||||
if [ -d $HOME/.rbenv/bin ] ; then
|
if [ -d $HOME/.rbenv/bin ] ; then
|
||||||
export PATH="$HOME/.rbenv/bin:$PATH"
|
export PATH="$HOME/.rbenv/bin:$PATH"
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user