dotfiles/.config/nvim/init.vim

28 lines
454 B
VimL
Raw Normal View History

se number
se ruler
se nowrap
se textwidth=0 wrapmargin=0 tw=0
se lbr
se mouse=a
se autoindent
se smartindent
se expandtab
se shiftwidth=4
se formatoptions+=j
se cursorline
se clipboard=unnamedplus
se autoread
2018-11-15 01:01:37 +00:00
syntax enable
filetype plugin indent on
map <F7> mzgg=G`z
se background=dark
2018-11-15 01:01:37 +00:00
colorscheme dracula
se termguicolors " Enable GUI colors for the terminal to get truecolor
2018-11-15 01:01:37 +00:00
autocmd FileType * se tw=0
2018-11-15 01:01:37 +00:00
se ignorecase
se smartcase