NvChad statusline workinggit add -Agit add -A
This commit is contained in:
parent
875831ed54
commit
d587a8ac3e
19 changed files with 1338 additions and 20 deletions
5
init.lua
5
init.lua
|
|
@ -40,7 +40,6 @@ P.S. You can delete this when you're done too. It's your config now :)
|
|||
-- Set <space> as the leader key
|
||||
-- See `:help mapleader`
|
||||
-- NOTE: Must happen before plugins are required (otherwise wrong leader will be used)
|
||||
require("custom")
|
||||
|
||||
vim.g.mapleader = ' '
|
||||
vim.g.maplocalleader = ' '
|
||||
|
|
@ -200,6 +199,7 @@ require('lazy').setup({
|
|||
|
||||
-- [[ Theme ]]
|
||||
vim.cmd [[colorscheme tokyonight]]
|
||||
vim.g.theme = "tokyonight"
|
||||
|
||||
-- [[ Setting options ]]
|
||||
-- See `:help vim.o`
|
||||
|
|
@ -524,5 +524,8 @@ cmp.setup {
|
|||
-- [[NvimTree]]
|
||||
require("nvim-tree").setup {}
|
||||
|
||||
-- [[Other configs]]
|
||||
require("custom")
|
||||
|
||||
-- The line beneath this is called `modeline`. See `:help modeline`
|
||||
-- vim: ts=2 sts=2 sw=2 et
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue