mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 23:06:38 -05:00
6afa665edc
file manager's theme, settings and keyboard mappings. Played around with the keyboard mappings in general quite a bit more. All the toggles output what they're doing now, though not their actual status in most cases at this point, and only in normal mode. The bottom scrollbar is now part of the gui scrollbar toggle as it turned out it can be auto-disabled when the content isn't wide enough anyway. I realized a bad hack to get visual paste ontop to work without replacing the paste buffer with whatever it was pasting over meant that pasting at the start and end of the line would leave issues with spacing, so I found a plugin that fixed the problem the right way and hooked things up through that.. Whether syntax checking is enabled by default or needs to be toggled on can now be set in the vimrc. Some small bugfixes and improvements were also made.
44 lines
1.1 KiB
VimL
44 lines
1.1 KiB
VimL
"==============="
|
|
" "
|
|
" Vim Config: "
|
|
" "
|
|
"==============="
|
|
"
|
|
" Notes:
|
|
" Tmux requires the '-2' flag to be set when
|
|
" launched for vim to use more than just the
|
|
" set of terminal colours.
|
|
"
|
|
" The ctags package should be downloaded from
|
|
" http://ctags.sourceforge.net and installed
|
|
" to $PATH
|
|
"
|
|
" To use lightline with powerline fonts, set
|
|
" powerlinefonts=1 below, and ensure guifont is
|
|
" set to a powerline patched font. For example:
|
|
" guifont=Droid\ Sans\ Mono\ for\ Powerline\ 12
|
|
|
|
"Powerline Font Support: (1:enabled, 0:disabled)
|
|
let powerlinefonts=1
|
|
|
|
"Syntax Checking Enabled: (1:enabled, 0:must be toggled on)
|
|
let autochecksyntax=1
|
|
|
|
"GVim Font Selection: (term font set by terminal)
|
|
set guifont=Droid\ Sans\ Mono\ 12
|
|
|
|
"Add Config Directory: (distro-agnostic system-wide)
|
|
set runtimepath+=/etc/vim,/etc/vim/after
|
|
|
|
"Load Settings:
|
|
runtime config/settings.vim
|
|
|
|
"Load Plugins:
|
|
runtime bundle/vim-pathogen/autoload/pathogen.vim
|
|
runtime config/plugins.vim
|
|
|
|
"Configure Keymappings:
|
|
runtime config/keyboard.vim
|
|
|
|
"Load Theme:
|
|
colorscheme darkcloud
|