added some essential settings to nvim configuration

This commit is contained in:
scbj
2024-11-21 09:32:56 +01:00
parent de5dbe208f
commit da4fd96075
6 changed files with 27 additions and 7 deletions

View File

@@ -5,12 +5,10 @@ A collection of configuration files meant to be used with GNU stow.
## Todos
* tmux
* configure 'pavucontrol' and 'blueman-manager' to use a dark theme
* configure screen locker
* configure lock screen (probably i3lock)
* fzf
* neovim
* configure screen locker
* configure lock screen (probably i3lock)
## Usage

View File

@@ -61,7 +61,7 @@ tiling_drag modifier titlebar
# start a terminal
bindsym $mod+Return exec alacritty
bindsym $mod+t exec "alacritty -e tmux attach"
# kill focused window
bindsym $mod+Shift+q kill

View File

@@ -1 +1,3 @@
require("zegonix")
require("config.lazy")

View File

@@ -1,5 +1,5 @@
{
"lazy.nvim": { "branch": "main", "commit": "077102c5bfc578693f12377846d427f49bc50076" },
"lazy.nvim": { "branch": "main", "commit": "56ead98e05bb37a4ec28930a54d836d033cf00f2" },
"plenary.nvim": { "branch": "master", "commit": "2d9b06177a975543726ce5c73fca176cedbffe9d" },
"telescope.nvim": { "branch": "master", "commit": "a0bbec21143c7bc5f8bb02e0005fa0b982edc026" }
}

View File

@@ -1 +1,3 @@
require("zegonix.remap")
require("zegonix.keybindings")
require("zegonix.settings")

View File

@@ -0,0 +1,18 @@
vim.opt.nu = true
vim.opt.relativenumber = true
vim.opt.tabstop = 4
vim.opt.softtabstop = 4
vim.opt.shiftwidth = 4
vim.opt.hlsearch = true
vim.opt.incsearch = true
vim.opt.termguicolors = true
vim.opt.scrolloff = 10
vim.opt.signcolumn = "yes"
vim.opt.isfname:append("@-@")
vim.opt.updatetime = 50