change the descriptioon

This commit is contained in:
Osman Faruk Bayram 2024-12-18 21:48:54 +03:00
parent 5b4e49be0f
commit c91dc96ba1
2 changed files with 11 additions and 1 deletions

View file

@ -7,5 +7,15 @@
# show spaces tabs and trailing spaces # show spaces tabs and trailing spaces
list = true; list = true;
listchars = "tab:» ,trail:·,multispace:·,lead: ,nbsp:"; listchars = "tab:» ,trail:·,multispace:·,lead: ,nbsp:";
# when i press tab i want to see spaces
expandtab = true;
tabstop = 4; # Number of spaces that a <Tab> in the file counts for.
shiftwidth = 4; # how many spaces are added in an indent
softtabstop = 4; # how many spaces are added when pressing tab
smarttab = true; # When on, a <Tab> in front of a line inserts blanks according to 'shiftwidth'. 'tabstop' or 'softtabstop' is used in other places.
# TODO: i want to see 4 spaces when i press tab in python and 2 spaces in nix using setlocal
# is it possible for me to set this per language?
}; };
} }

View file

@ -1,5 +1,5 @@
{ {
description = "NixVim config heavily inspired by AstroNvim"; description = "My custom neovim configuration that has been mixed and matched from various sources";
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";