From 099776ed43c0c71b8b259e3002bff57a9462422f Mon Sep 17 00:00:00 2001 From: Sergey Besedin Date: Wed, 23 Mar 2022 19:38:43 +0400 Subject: [PATCH] Update --- config/nvim/init.vim | 11 ++++++++--- config/youtube-dl/config | 2 +- gitignore_global | 1 + profile | 4 ++++ 4 files changed, 14 insertions(+), 4 deletions(-) diff --git a/config/nvim/init.vim b/config/nvim/init.vim index bd56aba..4541144 100644 --- a/config/nvim/init.vim +++ b/config/nvim/init.vim @@ -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 diff --git a/config/youtube-dl/config b/config/youtube-dl/config index 33c3b04..24c4d93 100644 --- a/config/youtube-dl/config +++ b/config/youtube-dl/config @@ -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 diff --git a/gitignore_global b/gitignore_global index 152bc99..75be5cb 100644 --- a/gitignore_global +++ b/gitignore_global @@ -23,5 +23,6 @@ report*.json .clinic/ /.elixir_ls/ +/.ignore/ .gitignore.local diff --git a/profile b/profile index 967396a..b2409be 100644 --- a/profile +++ b/profile @@ -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