Merge branch 'master' of git.venya.tech:mega_venik/dotfiles

This commit is contained in:
2023-09-30 00:54:19 +03:00
6 changed files with 34 additions and 1 deletions

3
.gitmodules vendored
View File

@@ -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

1
dotbot-asdf Submodule

Submodule dotbot-asdf added at 3153c946e8

View File

@@ -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}" "${@}"

View File

@@ -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]

View File

@@ -63,6 +63,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() "Перестать это делать
"
@@ -105,6 +106,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
"

17
windows/keyboard.ahk Normal file
View File

@@ -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-<num> to emit Win-<num> to switch between pinned apps
; on task panel
^1::Send #{1}
^2::Send #{2}
^3::Send #{3}
^4::Send #{4}
^5::Send #{5}