aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Bobov <anton@bobov.name>2023-08-13 19:36:16 +0500
committerAnton Bobov <anton@bobov.name>2023-08-13 19:36:16 +0500
commitc08d4414e745ac68902d45e1ba6f43478e14e723 (patch)
tree2334fc0d96d3556e58149d51112f361d66c7b759
parente4fdb888ed62c2b38210e390d2459f3a0af6f606 (diff)
Updates
-rw-r--r--files/.editorconfig3
-rw-r--r--files/.eget.toml5
-rw-r--r--files/.vimrc7
-rw-r--r--install.conf.yaml8
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