added some essential settings to nvim configuration
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -1 +1,3 @@
|
||||
require("zegonix")
|
||||
|
||||
require("config.lazy")
|
||||
|
||||
@@ -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" }
|
||||
}
|
||||
|
||||
@@ -1 +1,3 @@
|
||||
require("zegonix.remap")
|
||||
require("zegonix.keybindings")
|
||||
require("zegonix.settings")
|
||||
|
||||
|
||||
18
nvim/.config/nvim/lua/zegonix/settings.lua
Normal file
18
nvim/.config/nvim/lua/zegonix/settings.lua
Normal 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
|
||||
Reference in New Issue
Block a user