diff options
author | Chris <[email protected]> | 2020-04-01 12:07:50 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2020-04-01 12:07:50 -0400 |
commit | 7a5a320a835dc0e1efb005dcf4aa3d593286778b (patch) | |
tree | 9dbccf9348507db8abaacd5797d94e4d74f4b07e /modules/general.vim | |
parent | 4ed7236a6fccf027fe020330e8d0c4338a1e4aaf (diff) |
fixed floating window in which key
Diffstat (limited to 'modules/general.vim')
-rw-r--r-- | modules/general.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/general.vim b/modules/general.vim index dc46f552..ae2ed36e 100644 --- a/modules/general.vim +++ b/modules/general.vim @@ -17,7 +17,7 @@ set encoding=utf-8 " The encoding displayed set pumheight=10 " Makes popup menu smaller set fileencoding=utf-8 " The encoding written to file set ruler " show the cursor position all the time -set cmdheight=1 +set cmdheight=2 " always keep this at 2" set iskeyword+=- " treat dash separated words as a word text object" set mouse=a " Enable your mouse set splitbelow " Horizontal splits will automatically be below @@ -36,7 +36,7 @@ set number " Line numbers set cursorline " Enable highlighting of the current line set background=dark " tell vim what the background color looks like -let g:python_highlight_all = 0 " Get rid of annoying red highlights" +let g:python_highlight_all = 0 " Get rid of annoying red highlights" look into polyglot python implementation to choose what you want to enable let g:elite_mode=1 " Disable arrows" filetype plugin indent on " Gives vim abilty to recognize filetypes |