Skip to content

Instantly share code, notes, and snippets.

@nkpart
Created June 22, 2018 03:05
Show Gist options
  • Save nkpart/ef366d897474bcfb417ba0cfdf0555aa to your computer and use it in GitHub Desktop.
Save nkpart/ef366d897474bcfb417ba0cfdf0555aa to your computer and use it in GitHub Desktop.
call plug#begin('~/.local/share/nvim/plugged')
Plug 'rafi/awesome-vim-colorschemes'
Plug 'NLKNguyen/papercolor-theme'
Plug '/nix/store/dwxiva3adj5931g49scw9zip64n8ip9i-fzf-0.17.3/share/go/src/github.com/junegunn/fzf'
Plug 'junegunn/fzf.vim'
" Plug 'nbouscal/vim-stylish-haskell'
Plug 'alx741/vim-hindent'
Plug 'tpope/vim-markdown'
Plug 'tpope/vim-surround'
Plug 'tpope/vim-fugitive'
Plug 'neovimhaskell/haskell-vim'
Plug 'spwhitt/vim-nix'
Plug 'alx741/vim-stylishask'
Plug 'chrisbra/csv.vim'
call plug#end()
syntax on
filetype plugin indent on
let mapleader = ' '
let maplocalleader = ','
set hlsearch
set ignorecase
set incsearch
set laststatus=2
set number
set softtabstop=2
set expandtab
set smartcase
set history=1000
nnoremap <leader>pf :Files<CR>
nnoremap <leader>pg :GitFiles<CR>
nnoremap <leader>F :Stylishask<CR>
nnoremap <leader>sc :nohlsearch<CR>
nnoremap <leader>/ :Ag<cr>
" set background=light
let g:hindent_on_save = 0
let g:stylishask_on_save = 0
let g:haskell_classic_highlighting = 1
set undofile "turn on the feature
set undodir=/tmp/vim-undo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment