Skip to content

Commit

Permalink
Merge pull request #721 from mlibrary/vim
Browse files Browse the repository at this point in the history
Fix vim settings (mostly for root)
  • Loading branch information
rrotter authored Oct 12, 2024
2 parents 0604d1d + cb21d4c commit 9284b23
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 9284b23

Please sign in to comment.