From 8b2081d3f5ea066a4179569a00511bb03fadba60 Mon Sep 17 00:00:00 2001 From: Dmitry Chumak Date: Tue, 20 Jun 2023 13:26:46 +0300 Subject: [PATCH 1/4] [vim] commented out codeium plugin --- vim/vimrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vim/vimrc b/vim/vimrc index ae66434..9d2e5bc 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -60,6 +60,7 @@ call plug#begin('~/.vim/bundle') "Начать искать плагины в э Plug 'pearofducks/ansible-vim' Plug 'neoclide/coc.nvim', {'branch': 'release'} Plug 'elzr/vim-json' +" Plug 'Exafunction/codeium.vim' call plug#end() "Перестать это делать " @@ -102,6 +103,7 @@ set foldlevelstart=20 let g:airline_powerline_fonts = 0 " Disable powerline fonts let g:airline#extensions#keymap#enabled = 0 " Do not show keyboard mapping let g:airline_section_z = "㏑:%l/%L:%c" " Custom minimalistic current position section +" let g:airline_section_y = '{…}%3{codeium#GetStatusString()}' let g:Powerline_symbols='unicode' " Unicode support " From 65c799f574a8845474c3e06facbdfeb52c8ceb68 Mon Sep 17 00:00:00 2001 From: Dmitry Chumak Date: Tue, 12 Sep 2023 00:51:40 +0300 Subject: [PATCH 2/4] [vim] noswapfile enabled --- vim/vimrc | 1 + 1 file changed, 1 insertion(+) diff --git a/vim/vimrc b/vim/vimrc index dd614eb..a7fc463 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -7,6 +7,7 @@ filetype plugin indent on "Включает определение типа фа "... соответствующих ему плагинов и файлов отступов set nobackup set nowritebackup +set noswapfile set encoding=utf-8 syntax enable set timeoutlen=300 ttimeoutlen=0 " https://www.johnhawthorn.com/2012/09/vi-escape-delays/ From 6badd231f8d6db9799519dc08b0f00cf1ad216bd Mon Sep 17 00:00:00 2001 From: Dmitry Chumak Date: Tue, 12 Sep 2023 00:58:34 +0300 Subject: [PATCH 3/4] [win] added autohotkey config file --- windows/keyboard.ahk | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 windows/keyboard.ahk diff --git a/windows/keyboard.ahk b/windows/keyboard.ahk new file mode 100644 index 0000000..1c315f7 --- /dev/null +++ b/windows/keyboard.ahk @@ -0,0 +1,17 @@ +#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. +; #Warn ; Enable warnings to assist with detecting common errors. +SendMode Input ; Recommended for new scripts due to its superior speed and reliability. +SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. + +; Ctrl-Space to emit Win-Space which is used to switch keyboard layout +^space::#space + +LCtrl & Tab:: AltTab + +; remapping Ctrl- to emit Win- to switch between pinned apps +; on task panel +^1::Send #{1} +^2::Send #{2} +^3::Send #{3} +^4::Send #{4} +^5::Send #{5} From 0201a41408a38d53f2eb5c6f2a57e405e963e9d6 Mon Sep 17 00:00:00 2001 From: Dmitry Chumak Date: Thu, 21 Sep 2023 23:15:14 +0300 Subject: [PATCH 4/4] dotbot-asdf submodule added --- .gitmodules | 3 +++ dotbot-asdf | 1 + install | 2 +- install.conf.yaml | 10 ++++++++++ 4 files changed, 15 insertions(+), 1 deletion(-) create mode 160000 dotbot-asdf diff --git a/.gitmodules b/.gitmodules index 1af14d0..5ed9e83 100644 --- a/.gitmodules +++ b/.gitmodules @@ -2,3 +2,6 @@ path = dotbot url = https://github.com/anishathalye/dotbot ignore = dirty +[submodule "dotbot-asdf"] + path = dotbot-asdf + url = https://github.com/sobolevn/dotbot-asdf.git diff --git a/dotbot-asdf b/dotbot-asdf new file mode 160000 index 0000000..3153c94 --- /dev/null +++ b/dotbot-asdf @@ -0,0 +1 @@ +Subproject commit 3153c946e82f53dd6175af79710ff919ee696842 diff --git a/install b/install index 5a7e72c..07d8200 100755 --- a/install +++ b/install @@ -12,4 +12,4 @@ cd "${BASEDIR}" git -C "${DOTBOT_DIR}" submodule sync --quiet --recursive git submodule update --init --recursive "${DOTBOT_DIR}" -"${BASEDIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASEDIR}" -c "${CONFIG}" "${@}" +"${BASEDIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASEDIR}" --plugin-dir dotbot-asdf -c "${CONFIG}" "${@}" diff --git a/install.conf.yaml b/install.conf.yaml index b04c0b3..516d029 100644 --- a/install.conf.yaml +++ b/install.conf.yaml @@ -9,5 +9,15 @@ ~/.vim: vim ~/.zshrc: zsh/zshrc +- asdf: + - plugin: vim + global: 9.0.1473 + versions: + - 9.0.1473 + - plugin: nodejs + global: 19.0.0 + versions: + - 19.0.0 + - shell: - [git submodule update --init --recursive, Installing submodules]