Fixes for neovim things
This commit is contained in:
parent
ffc6d40741
commit
1bbdf01a2e
|
@ -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
|
||||||
|
|
7
env/nix/modules/users/daniel.nix
vendored
7
env/nix/modules/users/daniel.nix
vendored
|
@ -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
|
||||||
|
|
Reference in a new issue