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

Fix vim settings (mostly for root) #721

Merged
merged 1 commit into from
Oct 12, 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
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',
}
rrotter marked this conversation as resolved.
Show resolved Hide resolved
}
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