mirror of
https://github.com/Phantop/dotfiles
synced 2024-11-02 12:54:39 +00:00
30 lines
525 B
VimL
Executable file
30 lines
525 B
VimL
Executable file
set number
|
|
set ruler
|
|
set nowrap
|
|
set textwidth=0 wrapmargin=0 tw=0
|
|
set mouse=a
|
|
set autoindent
|
|
set smartindent
|
|
set expandtab
|
|
set shiftwidth=4
|
|
set formatoptions+=j
|
|
set cursorline
|
|
set clipboard=unnamedplus
|
|
set autoread
|
|
syntax enable
|
|
|
|
filetype plugin indent on
|
|
|
|
map <F7> mzgg=G`z
|
|
|
|
set background=dark
|
|
colorscheme dracula
|
|
|
|
"set t_Co=256 " Enable 256 colors
|
|
set termguicolors " Enable GUI colors for the terminal to get truecolor
|
|
|
|
autocmd FileType * set tw=0
|
|
|
|
set ignorecase
|
|
set smartcase
|