-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
set number | ||
|
||
autocmd FileType text setlocal tabstop=2 shiftwidth=2 expandtab " Set 2 spaces for tabstop, shiftwidth, and use spaces instead of tabs for text files | ||
syntax enable " Enable syntax highlighting | ||
set smartindent " Enable smart indentation | ||
set hlsearch " Highlight search results | ||
set ignorecase " Make searches case-insensitive | ||
set incsearch " Highlight incremental search | ||
set mouse=a " Enable mouse support | ||
|
||
" Disabled | ||
" set cursorline " Highlight the current line | ||
" set cursorcolumn " Highlight the current column | ||
|