dotfiles/nvim/init.vim

37 lines
618 B
VimL
Raw Normal View History

2022-05-15 18:41:16 +01:00
" --- Standard Vim settings ---"
2022-07-02 13:39:56 +01:00
"set number
2022-05-15 18:41:16 +01:00
set showmatch
set ignorecase
set hlsearch
set incsearch
set tabstop=4
set softtabstop=4
set expandtab
set shiftwidth=4
set autoindent
set wildmode=longest,list
"set cc=80
filetype plugin indent on
syntax on
set mouse=a
set clipboard=unnamedplus
" set cursorline
set ttyfast
set hidden
2022-07-02 13:39:56 +01:00
set background=dark
2022-05-15 18:41:16 +01:00
"--- Plugins --- "
call plug#begin()
Plug 'ryanoasis/vim-devicons'
Plug 'sheerun/vim-polyglot'
Plug 'jiangmiao/auto-pairs'
Plug 'ap/vim-css-color'
Plug 'plasticboy/vim-markdown'
Plug 'psliwka/vim-smoothie'
call plug#end()
2022-07-02 13:39:56 +01:00
syntax on
"colorscheme greenisgood