Skip to content

Commit

Permalink
Fix vim settings (mostly for root)
Browse files Browse the repository at this point in the history
- don't set bg=dark, vim automatically sets bg based on termcap
- create empty /root/.vimrc
  - w/o .vimrc vim loads defaults from /usr/share/vim/vim82/defaults.vim
  - defaults.vim sets mouse=a
  • Loading branch information
rrotter committed Oct 8, 2024
1 parent 75ec89e commit cb21d4c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions manifests/profile/vim.pp
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,11 @@
content => template('nebula/profile/vim/vimrc.vim.erb'),
require => Package['vim'],
}

# Write an empty /root/.vimrc to prevent vim from automatically
# loading /usr/share/vim/vim*/defaults.vim
file { '/root/.vimrc':
ensure => 'file',
mode => '0644',
}
}
2 changes: 1 addition & 1 deletion templates/profile/vim/vimrc.vim.erb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ syntax on

" If using a dark background within the editing area and syntax highlighting
" turn on this option as well
set background=dark
"set background=dark

" Uncomment the following to have Vim jump to the last position when
" reopening a file
Expand Down

0 comments on commit cb21d4c

Please sign in to comment.