Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update 2024-12-24 #74

Merged
merged 1 commit into from
Dec 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
115 changes: 16 additions & 99 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions dotfiles/.editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,6 @@ max_line_length = unset

[{**.yaml,**.yml}]
max_line_length = unset

[*.{md,txt}]
insert_final_newline = true
7 changes: 5 additions & 2 deletions dotfiles/.vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ augroup END
set nocompatible
set shell=bash
set ttyfast
set fileformat=unix
syntax on

" folding
Expand Down Expand Up @@ -182,6 +183,7 @@ augroup gr_filetype " filetypes
" ansible
au BufNewFile,BufRead .ansible-lint set ft=yaml
au BufNewFile,BufRead .yamllint set ft=yaml
au BufNewFile,BufRead *.j2 set ft=jinja2
" terragrunt
au BufNewFile,BufRead terragrunt.hcl set ft=terraform
" custom ssh configs
Expand All @@ -190,8 +192,9 @@ augroup gr_filetype " filetypes
au BufNewFile,BufRead Dockerfile* set ft=dockerfile
" fucking xml
au FileType xml setlocal foldmethod=syntax
" ansible
au BufNewFile,BufRead *.j2 set ft=jinja2
" markdown
au FileType markdown setlocal endofline


let g:xml_syntax_folding=1
augroup END
Expand Down
Loading