From 52f98c1d57b5e38f3544ade5fe2fd363fdfe12b4 Mon Sep 17 00:00:00 2001 From: Alex Tavarez Date: Tue, 16 Jun 2026 15:02:11 -0400 Subject: [PATCH] removed some information from example files for users to fill on their own --- roles/init-server/templates/vimrc.j2 | 112 --------------------------- vars/tail_net.yml.example | 5 +- vars/vpn_server.yml.example | 2 +- 3 files changed, 3 insertions(+), 116 deletions(-) delete mode 100644 roles/init-server/templates/vimrc.j2 diff --git a/roles/init-server/templates/vimrc.j2 b/roles/init-server/templates/vimrc.j2 deleted file mode 100644 index b9ff9c2..0000000 --- a/roles/init-server/templates/vimrc.j2 +++ /dev/null @@ -1,112 +0,0 @@ -" Disable compatibility with vi which can cause unexpected issues. -set nocompatible - -" Enable type file detection. Vim will be able to try to detect the type of file in use. -filetype on - -" Enable plugins and load plugin for the detected file type. -filetype plugin on - -" Load an indent file for the detected file type. -filetype indent on - -" Turn syntax highlighting on. -syntax on - -" Add numbers to each line on the left-hand side. -set number - -" Jump to line by relative number -set relativenumber -{% if (vim_blockedcursor | default(True)) %} - -" Highlight cursor line underneath the cursor horizontally. -set cursorline - -" Highlight cursor line underneath the cursor vertically. -set cursorcolumn -{% endif %} -{% if (vim_spatialize | default(True)) %} - -" Use space characters instead of tabs. -set expandtab - -" Set tab width to 4 columns. -set tabstop={{ vim_tabgap | default(2) }} -{% endif %} - -" While searching though a file incrementally highlight matching characters as you type. -set incsearch - -" Show the mode you are on the last line. -set showmode - -" Show matching words during a search. -set showmatch - -" Use highlighting when doing a search. -set hlsearch - -" Set the commands to save in history default number is 20. -set history={{ vim_historyspan | default(20) }} -{% if (vim_pathcompletion | default(True)) %} - -" Enable auto completion menu after pressing TAB. -set wildmenu - -" Make wildmenu behave like similar to Bash completion. -set wildmode=list:longest -{% if vimignore is defined or vimignore != None %} - -" There are certain files that we would never want to edit with Vim. -" Wildmenu will ignore files with these extensions. -set wildignore={{ vimignore | join(',') }} -{% endif %} -{% endif %} - -" PLUGINS ---------------------------------------------------------------- - -" Plugin code goes here. - -call plug#begin('~/.vim/plugged') - - Plug 'flazz/vim-colorschemes' -{% if (vim_eddelimiters | default(True)) %} - Plug 'tpope/vim-surround' -{% endif %} -{% if (vim_gitspice | default(True)) %} - Plug 'airblade/vim-gitgutter' - Plug 'tpope/vim-fugitive' -{% endif %} -{% if (vim_statusline | default(True)) %} - Plug 'vim-airline/vim-airline' -{% endif %} -{% if (vim_fancycomment | default(True)) %} - Plug 'scrooloose/nerdcommenter' -{% endif %} -{% if (vim_idelangs | default(True)) %} - Plug 'dense-analysis/ale' -{% endif %} - -call plug#end() - -" MAPPINGS --------------------------------------------------------------- - -" Mappings code goes here. - -" VIMSCRIPT -------------------------------------------------------------- -{% if (vim_origami | default(True)) %} - -" This will enable code folding. -" Use the marker method of folding. -augroup filetype_vim - autocmd! - autocmd FileType vim setlocal foldmethod=marker -augroup END -{% endif %} - -" More Vimscripts code goes here. - -" STATUS LINE ------------------------------------------------------------ - -" Status bar code goes here. diff --git a/vars/tail_net.yml.example b/vars/tail_net.yml.example index d61e5f0..563f63e 100644 --- a/vars/tail_net.yml.example +++ b/vars/tail_net.yml.example @@ -5,15 +5,14 @@ tail: email: "" pfp: ~ scheme: https - domain: sukaato.moe + domain: localhost port: ":8080" grpc: expose: false secure: true port: ":50443" magic_dns: - domain: "cyberia.net" + domain: "" nameservers: - - "https://dns.nextdns.io/5a5ac6" - 9.9.9.9 diff --git a/vars/vpn_server.yml.example b/vars/vpn_server.yml.example index 2b64f62..cf3ab75 100644 --- a/vars/vpn_server.yml.example +++ b/vars/vpn_server.yml.example @@ -13,5 +13,5 @@ vpn_server: - [tcp,"143"] # IMAP - [tcp,"993"] # IMAP clients: - - name: armitage + - name: "" desc: "my homelab server"