diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-10-11 01:25:21 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-10-11 01:25:21 +0200 |
commit | cee2e5705eaed9d10e4808a1f78917923bdd0889 (patch) | |
tree | 68c9871ed398aca3b0db18b643258b6a452ecbf8 | |
parent | Hardware: Virtualbox: Disable wlr_hardware_cursors and guest_tools (diff) | |
download | nixos-config-cee2e5705eaed9d10e4808a1f78917923bdd0889.tar.gz nixos-config-cee2e5705eaed9d10e4808a1f78917923bdd0889.tar.bz2 nixos-config-cee2e5705eaed9d10e4808a1f78917923bdd0889.zip |
Hosts: Neovim: Add custom config
Diffstat (limited to '')
-rw-r--r-- | hosts/configuration.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/hosts/configuration.nix b/hosts/configuration.nix index b8a8ffc..ab47d46 100644 --- a/hosts/configuration.nix +++ b/hosts/configuration.nix @@ -162,6 +162,17 @@ enable = true; viAlias = true; vimAlias = true; + configure = { + extraConfig = '' + filetype plugin indent on + syntax on + set title + set tabstop=8 + set softtabstop=8 + set shiftwidth=8 + set noexpandtab + ''; + }; }; light.enable = true; |