diff options
author | ChristianChiarulli <[email protected]> | 2019-02-26 20:31:15 -0500 |
---|---|---|
committer | ChristianChiarulli <[email protected]> | 2019-02-26 20:31:15 -0500 |
commit | 1b5b78fdac6c8182f583d4875c621c6e6566182b (patch) | |
tree | 6224155cf9e129d47f0753a104594d8c46bb8de9 /modules/general.vim | |
parent | 718b37578cca47c3bf25a6a4439f28322b4f46c9 (diff) |
fixed C-l in pydoc overriding my window move mapping, some toggle cammands still don't work, also fixed backticks not appearing
Diffstat (limited to 'modules/general.vim')
-rw-r--r-- | modules/general.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/general.vim b/modules/general.vim index 2b27b8fc..c00b2b34 100644 --- a/modules/general.vim +++ b/modules/general.vim @@ -11,11 +11,13 @@ xmap <space> \ syntax enable " Enables syntax highlighing set hidden " Required for specific actions that require multiple buffers +set conceallevel=0 set nowrap " display long lines as just one line 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=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 |