summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <david@luevano.xyz>2023-06-03 11:07:10 -0600
committerDavid Luevano Alvarado <david@luevano.xyz>2023-06-03 11:07:10 -0600
commit5ecf844b1f2efbdc86b1653483f17d7ecb39f8ee (patch)
tree58023d0c466c19c92a1a8a6f195c4e1dba883ba4 /lua
parent3d48fe1709852961dd06e5f1f5a849b217f4962d (diff)
change colorscheme management, use dracula
Diffstat (limited to 'lua')
-rw-r--r--lua/plugins/colorscheme.lua8
-rw-r--r--lua/plugins/dracula.lua7
-rw-r--r--lua/plugins/lualine.lua2
-rw-r--r--lua/plugins/neo-tree.lua16
4 files changed, 16 insertions, 17 deletions
diff --git a/lua/plugins/colorscheme.lua b/lua/plugins/colorscheme.lua
deleted file mode 100644
index c1d9a11..0000000
--- a/lua/plugins/colorscheme.lua
+++ /dev/null
@@ -1,8 +0,0 @@
-return {
- 'navarasu/onedark.nvim',
- name = 'colorscheme',
- priority = 1000,
- config = function()
- vim.cmd.colorscheme 'onedark'
- end,
-}
diff --git a/lua/plugins/dracula.lua b/lua/plugins/dracula.lua
new file mode 100644
index 0000000..65f032e
--- /dev/null
+++ b/lua/plugins/dracula.lua
@@ -0,0 +1,7 @@
+return {
+ 'Mofiqul/dracula.nvim',
+ priority = 1000,
+ config = function()
+ vim.cmd.colorscheme 'dracula'
+ end,
+}
diff --git a/lua/plugins/lualine.lua b/lua/plugins/lualine.lua
index 350777d..a90a94c 100644
--- a/lua/plugins/lualine.lua
+++ b/lua/plugins/lualine.lua
@@ -3,7 +3,7 @@ return {
opts = {
options = {
icons_enabled = false,
- theme = 'colorscheme',
+ theme = 'dracula-nvim',
component_separators = '|',
section_separators = '',
},
diff --git a/lua/plugins/neo-tree.lua b/lua/plugins/neo-tree.lua
index 16d69c8..e83de80 100644
--- a/lua/plugins/neo-tree.lua
+++ b/lua/plugins/neo-tree.lua
@@ -1,19 +1,19 @@
return {
- "nvim-neo-tree/neo-tree.nvim",
- cmd = "Neotree",
- version = "*",
+ 'nvim-neo-tree/neo-tree.nvim',
+ cmd = 'Neotree',
+ version = '*',
keys = {
- { "<leader>nt", "<CMD>Neotree toggle<CR>", desc = "Toggle [N]eo[t]ree" },
+ { '<leader>nt', '<CMD>Neotree toggle<CR>', desc = 'Toggle [N]eo[t]ree' },
},
dependencies = {
- "nvim-lua/plenary.nvim",
- "MunifTanjim/nui.nvim",
- "nvim-tree/nvim-web-devicons",
+ 'nvim-lua/plenary.nvim',
+ 'MunifTanjim/nui.nvim',
+ 'nvim-tree/nvim-web-devicons',
},
opts = {
filesystem = {
follow_current_file = true,
- hijack_netrw_behavior = "open_current",
+ hijack_netrw_behavior = 'open_current',
},
},
}