diff options
author | Cody Hiar <codyfh@gmail.com> | 2017-03-17 16:47:06 -0600 |
---|---|---|
committer | Cody Hiar <codyfh@gmail.com> | 2017-03-17 16:47:06 -0600 |
commit | 7fe8144b759e495b0b94e692f584c2d02aef67df (patch) | |
tree | 7e84b580133d2340f62e92c92d0da42a606a136b /plugin/vim-options.vim | |
parent | bda808d983e3351cdca005eb3b06e8ab1ea00219 (diff) |
Setting default as 4 spaces
Diffstat (limited to 'plugin/vim-options.vim')
-rw-r--r-- | plugin/vim-options.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugin/vim-options.vim b/plugin/vim-options.vim index be86b8f..92c7cee 100644 --- a/plugin/vim-options.vim +++ b/plugin/vim-options.vim @@ -12,6 +12,7 @@ set hlsearch " After a '/' search, highlight the matches set path=** " Set path to look at all directories under current root set wildignore=*/app/cache,*/vendor,*/env,*.pyc,*/venv,*/__pycache__ " Wildmenu will ignore these folder/file types set expandtab " Expand tabs into spaces +set tabstop=4 " Default to 4 spaces set shiftwidth=0 " Make shiftwidth value the same as tabstop set history=1000 " Set number of ':' commands set relativenumber " Use relative numbers in the sidebar |