Skip to content

Instantly share code, notes, and snippets.

@mfandl
Last active March 19, 2018 14:31
Show Gist options
  • Save mfandl/e821baa58a47f40aed5db10246295431 to your computer and use it in GitHub Desktop.
Save mfandl/e821baa58a47f40aed5db10246295431 to your computer and use it in GitHub Desktop.
my neovim config
set number
set expandtab
set tabstop=2
set softtabstop=2
set shiftwidth=2
set nofoldenable
let g:mapleader = ','
let g:ale_fixers = {
\ 'javascript': ['eslint']
\ }
let g:deoplete#enable_at_startup = 1
call plug#begin('~/.config/nvim/plugged')
Plug 'neomake/neomake'
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
Plug 'SirVer/ultisnips'
Plug 'Valloric/YouCompleteMe'
Plug 'petrbroz/vim-glsl'
Plug 'othree/yajs.vim'
Plug 'pangloss/vim-javascript'
Plug 'carlitux/deoplete-ternjs'
Plug 'ternjs/tern_for_vim'
Plug 'ctrlpvim/ctrlp.vim'
Plug 'neovimhaskell/haskell-vim'
Plug 'parsonsmatt/intero-neovim'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'joshdick/onedark.vim'
Plug 'iCyMind/NeoSolarized'
call plug#end()
let g:netrw_banner = 0
let g:netrw_liststyle = 3
let g:netrw_winsize = 20
let $NVIM_TUI_ENABLE_TRUE_COLOR=1
set termguicolors
colorscheme NeoSolarized
let g:airline_theme = 'solarized'
let g:haskell_classic_highlighting = 1
let g:haskell_indent_if = 3
let g:haskell_indent_case = 2
let g:haskell_indent_let = 4
let g:haskell_intend_where = 6
let g:haskell_indent_before_where = 2
let g:haskell_indent_after_baer_where = 2
let g:haskell_indent_do = 3
let g:haskell_indent_in = 1
let g:haskell_indent_guard = 2
let g:haskell_indent_case_alternative = 1
let g:cabal_indent_section = 2
let g:haskell_enable_quantification = 1
let g:haskell_enable_recursivedo = 1
let g:haskel_enable_arrowsyntax = 1
let g:haskell_enable_pattern_synonyms = 1
let g:haskell_enable_typeroles = 1
let g:haskell_enable_static_pointers = 1
let g:haskell_enable_backpack = 1
let g:haskellmode_completion_ghc = 0
call neomake#configure#automake('nw', 750)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment