David McKinney
c08e51c9ae
- Added citadel-setpassword.service and shell script to set a default password of 'citadel' in install mode, does not run in any other mode or if a password is already set - Re-implement disable logging out of Gnome: * Lock preventing log outs in gsettings override * Patched gnome-session so that locking log outs does not lock shutting down * Patched gnome-shell to remove 'Log Out' from status label - Added keyboard shortcut for Citadel Realms UI (gtk) to gnome-shell: * Added gsetting for the shortcut * Separated inital realm dconf database and Citadel dconf databases to use different settings for each * Added Ctrl+Alt+c as the keyboard shortcut for launching Citadel Realms UI to the citadel dconf database - Added neovim init.vim to realms skel since neovim is now default vim in realms
31 lines
943 B
VimL
31 lines
943 B
VimL
syntax on
|
|
set hidden
|
|
|
|
"
|
|
" Settings
|
|
"
|
|
|
|
set noswapfile " Don't use swapfile
|
|
set splitright " Split vertical windows right to the current windows
|
|
set splitbelow " Split horizontal windows below to the current windows
|
|
set encoding=utf-8 " Set default encoding to UTF-8
|
|
set autowrite " Automatically save before :next, :make etc.
|
|
set autoread " Automatically reread changed files without asking me anything
|
|
|
|
set lazyredraw " Wait to redraw
|
|
set ignorecase " Search case insensitive...
|
|
set smartcase " ... but not when search pattern contains upper case characters
|
|
set ttyfast
|
|
|
|
set termguicolors
|
|
|
|
let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum"
|
|
let &t_8b = "\<Esc>[48;2;%lu;%lu;%lum"
|
|
|
|
set rtp+=/opt/share/vim
|
|
|
|
if filereadable(expand("~/.base16vim"))
|
|
let base16colorspace=256
|
|
source ~/.base16vim
|
|
endif
|