split up common
This commit is contained in:
72
vim/files/vimrc
Normal file
72
vim/files/vimrc
Normal file
@@ -0,0 +1,72 @@
|
||||
if v:lang =~ "utf8$" || v:lang =~ "UTF-8$"
|
||||
set fileencodings=ucs-bom,utf-8,latin1
|
||||
endif
|
||||
set nocompatible " Use Vim defaults (much better!)
|
||||
set bs=indent,eol,start " allow backspacing over everything in insert mode
|
||||
set ai " always set autoindenting on
|
||||
set viminfo='20,\"50 " read/write a .viminfo file, don't store more
|
||||
" than 50 lines of registers
|
||||
set history=50 " keep 50 lines of command line history
|
||||
set ruler " show the cursor position all the time
|
||||
|
||||
" Only do this part when compiled with support for autocommands
|
||||
if has("autocmd")
|
||||
augroup redhat
|
||||
autocmd!
|
||||
" When editing a file, always jump to the last cursor position
|
||||
autocmd BufReadPost *
|
||||
\ if line("'\"") > 0 && line ("'\"") <= line("$") |
|
||||
\ exe "normal! g'\"" |
|
||||
\ endif
|
||||
" don't write swapfile on most commonly used directories for NFS mounts or USB sticks
|
||||
autocmd BufNewFile,BufReadPre /media/*,/mnt/* set directory=~/tmp,/var/tmp,/tmp
|
||||
" start with spec file template
|
||||
autocmd BufNewFile *.spec 0r /usr/share/vim/vimfiles/template.spec
|
||||
augroup END
|
||||
endif
|
||||
|
||||
if has("cscope") && filereadable("/usr/bin/cscope")
|
||||
set csprg=/usr/bin/cscope
|
||||
set csto=0
|
||||
set cst
|
||||
set nocsverb
|
||||
" add any database in current directory
|
||||
if filereadable("cscope.out")
|
||||
cs add cscope.out
|
||||
" else add database pointed to by environment
|
||||
elseif $CSCOPE_DB != ""
|
||||
cs add $CSCOPE_DB
|
||||
endif
|
||||
set csverb
|
||||
endif
|
||||
|
||||
" Switch syntax highlighting on, when the terminal has colors
|
||||
" Also switch on highlighting the last used search pattern.
|
||||
if &t_Co > 2 || has("gui_running")
|
||||
syntax on
|
||||
set hlsearch
|
||||
endif
|
||||
|
||||
filetype plugin on
|
||||
|
||||
" Don't wake up system with blinking cursor:
|
||||
" http://www.linuxpowertop.org/known.php
|
||||
let &guicursor = &guicursor . ",a:blinkon0"
|
||||
|
||||
" size of a hard tabstop
|
||||
set tabstop=4
|
||||
|
||||
" size of an "indent"
|
||||
set shiftwidth=4
|
||||
|
||||
" a combination of spaces and tabs are used to simulate tab stops at a width
|
||||
" other than the (hard)tabstop
|
||||
set softtabstop=4
|
||||
" make "tab" insert indents instead of tabs at the beginning of a line
|
||||
set smarttab
|
||||
|
||||
" always uses spaces instead of tab characters
|
||||
set expandtab
|
||||
|
||||
" disable visual on click
|
||||
set mouse=
|
||||
20
vim/init.sls
Normal file
20
vim/init.sls
Normal file
@@ -0,0 +1,20 @@
|
||||
{% from "vim/map.jinja" import vim with context %}
|
||||
|
||||
{{ vim.pkg }}:
|
||||
pkg.installed: []
|
||||
|
||||
/root/.vimrc:
|
||||
file.managed:
|
||||
- source: 'salt://common/files/vimrc'
|
||||
- user: root
|
||||
- group: root
|
||||
- mode: 644
|
||||
|
||||
{% for user in salt.pillar.get('users', []) %}
|
||||
/home/{{user}}/.vimrc:
|
||||
file.managed:
|
||||
- source: 'salt://common/files/vimrc'
|
||||
- user: {{ user }}
|
||||
- group: {{ user }}
|
||||
- mode: 644
|
||||
{% endfor %}
|
||||
4
vim/map.jinja
Normal file
4
vim/map.jinja
Normal file
@@ -0,0 +1,4 @@
|
||||
{% set vim = salt.grains.filter_by({
|
||||
'Debian': {'pkg': 'vim'},
|
||||
'RedHat': {'pkg': 'vim-enhanced'},
|
||||
}) %}
|
||||
Reference in New Issue
Block a user