Fixes for neovim things

This commit is contained in:
Daniel Flanagan 2020-11-07 00:47:32 -06:00
parent ffc6d40741
commit 1bbdf01a2e
Signed by: lytedev
GPG key ID: 5B2020A0F9921EF4
2 changed files with 6 additions and 2 deletions

View file

@ -39,6 +39,7 @@ filetype indent on
filetype plugin on filetype plugin on
" use :h option-list if you need to know what these do " use :h option-list if you need to know what these do
set fcs=eob:\+
set encoding=utf8 set encoding=utf8
set tabstop=2 shiftwidth=2 softtabstop=2 noexpandtab set tabstop=2 shiftwidth=2 softtabstop=2 noexpandtab
set autoindent smartindent set autoindent smartindent

View file

@ -1,4 +1,7 @@
{ config, pkgs, ... }: { { config, pkgs, ... }:
let
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
in {
fonts.fonts = with pkgs; [ fonts.fonts = with pkgs; [
# helvetica # needed by zoom # helvetica # needed by zoom
]; ];
@ -13,7 +16,7 @@
pulsemixer # audio pulsemixer # audio
file # identify file types file # identify file types
kitty # terminal emulator kitty # terminal emulator
fzf # fuzzy finder unstable.fzf # fuzzy finder
dmenu # TODO: currently only using this for dmenu_path in `bin/launch` dmenu # TODO: currently only using this for dmenu_path in `bin/launch`
ranger # tui for file management ranger # tui for file management
pass # the standard unix password manager pass # the standard unix password manager