mirror of
https://github.com/WarrenHood/dotfiles.git
synced 2025-04-30 00:04:59 +01:00
Neovim OneDark Darker theme
This commit is contained in:
parent
89de3828a1
commit
1ee73f7415
|
@ -3,3 +3,4 @@ require("warrenhood.keybinds")
|
||||||
require("warrenhood.plugins")
|
require("warrenhood.plugins")
|
||||||
require("warrenhood.mason-config")
|
require("warrenhood.mason-config")
|
||||||
require("warrenhood.cmp-config")
|
require("warrenhood.cmp-config")
|
||||||
|
require("warrenhood.theme")
|
||||||
|
|
|
@ -17,11 +17,17 @@ local packer_bootstrap = ensure_packer()
|
||||||
local use = require("packer").use
|
local use = require("packer").use
|
||||||
|
|
||||||
require("packer").startup(function()
|
require("packer").startup(function()
|
||||||
use("wbthomason/packer.nvim") -- Package manager
|
-- Packer package manager
|
||||||
|
use("wbthomason/packer.nvim")
|
||||||
|
|
||||||
|
-- OneDark color scheme
|
||||||
|
use("navarasu/onedark.nvim")
|
||||||
|
|
||||||
|
-- LSP Stuff
|
||||||
use({
|
use({
|
||||||
"williamboman/mason.nvim", -- LSP Server manager etc
|
"williamboman/mason.nvim",
|
||||||
"williamboman/mason-lspconfig.nvim",
|
"williamboman/mason-lspconfig.nvim",
|
||||||
"neovim/nvim-lspconfig", -- Configurations for Nvim LSP
|
"neovim/nvim-lspconfig",
|
||||||
})
|
})
|
||||||
|
|
||||||
-- Autocomplete
|
-- Autocomplete
|
||||||
|
|
|
@ -19,5 +19,8 @@ o.smartcase = true
|
||||||
-- Enable mouse
|
-- Enable mouse
|
||||||
o.mouse = 'a'
|
o.mouse = 'a'
|
||||||
|
|
||||||
|
-- Enable termguicolors
|
||||||
|
o.termguicolors = true
|
||||||
|
|
||||||
-- Use space for leader key
|
-- Use space for leader key
|
||||||
g.mapleader = " "
|
g.mapleader = " "
|
||||||
|
|
5
neovim/.config/nvim/lua/warrenhood/theme.lua
Normal file
5
neovim/.config/nvim/lua/warrenhood/theme.lua
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
-- OneDark Darker theme
|
||||||
|
require('onedark').setup {
|
||||||
|
style = 'darker'
|
||||||
|
}
|
||||||
|
require('onedark').load()
|
Loading…
Reference in a new issue