Skip to content

Commit

Permalink
feat: Add .vimrc
Browse files Browse the repository at this point in the history
  • Loading branch information
kpatryk committed Nov 23, 2023
1 parent a3d6e43 commit 448dc4a
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .vimrc
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

0 comments on commit 448dc4a

Please sign in to comment.