add noice for cmd input and notification. Also update statuslines (vim and tmux) to now show redundant data.
16 lines
571 B
Lua
16 lines
571 B
Lua
-- Make sure to update packer with `:PackerInstall` and `:PackerSync`
|
|
-- Treesitter with `:TSUpdate` after every nvim update.
|
|
-- LSP with `:LSPInstall`, log with `:LSPInfo`
|
|
--
|
|
-- Rollback possible with packer.nvim
|
|
-- Always create a snapshot BEFORE upgrading, so we can rollback if we find sth
|
|
-- `:PackerSnapshot <DATE>-<MONTH DIGIT>-<YEAR>`
|
|
-- Location: ~/.cache/nvim/packer.nvim
|
|
|
|
-- This must be loaded first
|
|
vim.cmd("set termguicolors")
|
|
|
|
require 'plugins' -- Load plugins and their conf
|
|
require 'settings' -- General settings
|
|
require 'mappings' -- Keyboard mappings
|