diff options
| -rw-r--r-- | files/.editorconfig | 3 | ||||
| -rw-r--r-- | files/.eget.toml | 5 | ||||
| -rw-r--r-- | files/.vimrc | 7 | ||||
| -rw-r--r-- | install.conf.yaml | 8 |
4 files changed, 22 insertions, 1 deletions
diff --git a/files/.editorconfig b/files/.editorconfig index 6023520..30dc2cc 100644 --- a/files/.editorconfig +++ b/files/.editorconfig @@ -13,3 +13,6 @@ indent_size = 4 [*.md] trim_trailing_whitespace = false + +[Makefile] +indent_style = tab diff --git a/files/.eget.toml b/files/.eget.toml index 0d9b07c..7a76eff 100644 --- a/files/.eget.toml +++ b/files/.eget.toml @@ -11,6 +11,11 @@ asset_filters = [ "zip" ] ["antonmedv/fx"] +["mikefarah/yq"] +asset_filters = [ "tar.gz" ] +file = "yq_linux_amd64" +target = "~/.local/bin/yq" + ["docker/compose"] target = "~/.local/bin/docker-compose" diff --git a/files/.vimrc b/files/.vimrc index a8619c8..c3879d9 100644 --- a/files/.vimrc +++ b/files/.vimrc @@ -70,6 +70,7 @@ Plug 'terryma/vim-expand-region' "Plug 'vim-scripts/YankRing.vim' Plug 'tpope/vim-dadbod' Plug 'dhruvasagar/vim-table-mode' +Plug 'tpope/vim-eunuch' " File types @@ -106,6 +107,7 @@ set keymap=russian-jcukenwin set spelllang=ru,en set spell set spellcapcheck= +set spelloptions=camel set iminsert=0 "set imsearch=0 @@ -550,6 +552,11 @@ let NERDTreeAutoDeleteBuffer=1 let NERDTreeIgnore = [ '\.pyc$' ] " }}} +" NERD Commenter {{{ + +let NERDSpaceDelims=1 + +" }}} " Scratch {{{ function! ScratchToggle() diff --git a/install.conf.yaml b/install.conf.yaml index cca988c..20f1d22 100644 --- a/install.conf.yaml +++ b/install.conf.yaml @@ -52,4 +52,10 @@ - shell: - [git submodule update --init --recursive, Installing submodules] - - [~/.tmux/plugins/tpm/bin/install_plugins, Installing tmux plugins] + - command: | + ~/.tmux/plugins/tpm/bin/install_plugins + ~/.tmux/plugins/tpm/bin/update_plugins all + description: Installing tmux plugins + - command: vim -E +PlugInstall +PlugUpdate +qa + description: Install vim plugins + stdin: true |
