summaryrefslogtreecommitdiff
path: root/home/.config/nvim/init.vim
diff options
context:
space:
mode:
authorBotond Hende <nettingman@gmail.com>2024-04-14 06:38:49 +0200
committerBotond Hende <nettingman@gmail.com>2024-04-14 06:38:49 +0200
commit0221492f62bcc1b766c2a4d5dbe26f6ff2ed8bc2 (patch)
treef91b7ada571a4dab7ae99c8f3ee252616baff2db /home/.config/nvim/init.vim
squashed init
Diffstat (limited to 'home/.config/nvim/init.vim')
-rw-r--r--home/.config/nvim/init.vim12
1 files changed, 12 insertions, 0 deletions
diff --git a/home/.config/nvim/init.vim b/home/.config/nvim/init.vim
new file mode 100644
index 0000000..bbccc8b
--- /dev/null
+++ b/home/.config/nvim/init.vim
@@ -0,0 +1,12 @@
+set tabstop=4 " Number of spaces that a <Tab> in the file counts for.
+set shiftwidth=0 " Number of spaces to use for each step of (auto)indent.
+set noexpandtab " Do not use the appropriate number of spaces to insert a <Tab>.
+set showmatch " When a bracket is inserted, briefly jump to the matching
+set ignorecase " Ignore case in search patterns.
+set smartcase " Override 'ignorecase' if the pattern contains upper case
+
+set background=dark
+set mouse= " Disable mouse "
+
+set number
+hi LineNr ctermfg=gray