This commit is contained in:
Sergey 2022-03-23 19:38:43 +04:00
parent d8cf77a93a
commit 099776ed43
4 changed files with 14 additions and 4 deletions

View File

@ -120,12 +120,17 @@ lua << EOF
-- telescope
require('telescope').setup{
-- defaults = {
-- layout_config = {
-- vertical = { width = 0.9 }
-- }
-- },
pickers = {
find_files = {
theme = "dropdown",
theme = "ivy",
},
live_grep = {
theme = "dropdown",
theme = "ivy",
}
},
}
@ -199,7 +204,7 @@ capabilities = require('cmp_nvim_lsp').update_capabilities(capabilities)
for _, lsp in ipairs(servers) do
nvim_lsp[lsp].setup {
flags = {
debounce_text_changes = 150,
debounce_text_changes = 400,
},
on_attach = on_attach,
capabilities = capabilities

View File

@ -1,6 +1,6 @@
--prefer-free-formats
--mark-watched
-f mp4+best/mp4+bestaudio/bestvideo+bestaudio/best
-f bestvideo[height<=?1080]+bestaudio/best
--retries infinite
--socket-timeout 1
--external-downloader aria2c

View File

@ -23,5 +23,6 @@ report*.json
.clinic/
/.elixir_ls/
/.ignore/
.gitignore.local

View File

@ -45,6 +45,10 @@ if [ -d $HOME/.cargo/bin ] ; then
export PATH="$HOME/.cargo/bin:$PATH"
fi
if [ -d $GOPATH/bin ] ; then
export PATH="$GOPATH/bin:$PATH"
fi
if [ -d $HOME/.rbenv/bin ] ; then
export PATH="$HOME/.rbenv/bin:$PATH"
fi