aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Patti <feoh@feoh.org>2023-06-04 16:10:59 +0000
committerChris Patti <feoh@feoh.org>2023-06-04 16:10:59 +0000
commit5e4d24cb2faf37d341bc906affcc2cac21919c51 (patch)
tree361228e816969815d05e635a3fa37f38e7d1506f
parentcdaa750c86cfc0c8f2fc1c8638b7296c327bf5a9 (diff)
Revert "Refactor theme and status line into their own file"
This reverts commit cdaa750c86cfc0c8f2fc1c8638b7296c327bf5a9.
-rw-r--r--init.lua29
-rw-r--r--lua/kickstart/plugins/autoformat.lua14
-rw-r--r--lua/kickstart/plugins/statusline.lua14
-rw-r--r--lua/kickstart/plugins/theme.lua10
4 files changed, 34 insertions, 33 deletions
diff --git a/init.lua b/init.lua
index 5e9e567..ca2da6e 100644
--- a/init.lua
+++ b/init.lua
@@ -122,18 +122,35 @@ require('lazy').setup({
changedelete = { text = '~' },
},
on_attach = function(bufnr)
- vim.keymap.set('n', '[c', require('gitsigns').prev_hunk, { buffer = bufnr, desc = 'Go to Previous Hunk' })
- vim.keymap.set('n', ']c', require('gitsigns').next_hunk, { buffer = bufnr, desc = 'Go to Next Hunk' })
+ vim.keymap.set('n', '<leader>gp', require('gitsigns').prev_hunk, { buffer = bufnr, desc = '[G]o to [P]revious Hunk' })
+ vim.keymap.set('n', '<leader>gn', require('gitsigns').next_hunk, { buffer = bufnr, desc = '[G]o to [N]ext Hunk' })
vim.keymap.set('n', '<leader>ph', require('gitsigns').preview_hunk, { buffer = bufnr, desc = '[P]review [H]unk' })
end,
},
},
- -- Theme related configs go here
- require 'kickstart.plugins.theme',
+ {
+ -- Theme inspired by Atom
+ 'navarasu/onedark.nvim',
+ priority = 1000,
+ config = function()
+ vim.cmd.colorscheme 'onedark'
+ end,
+ },
- -- Status line related configs go here
- require 'kickstart.plugins.statusline',
+ {
+ -- Set lualine as statusline
+ 'nvim-lualine/lualine.nvim',
+ -- See `:help lualine.txt`
+ opts = {
+ options = {
+ icons_enabled = false,
+ theme = 'onedark',
+ component_separators = '|',
+ section_separators = '',
+ },
+ },
+ },
{
-- Add indentation guides even on blank lines
diff --git a/lua/kickstart/plugins/autoformat.lua b/lua/kickstart/plugins/autoformat.lua
index 855f350..bc56b15 100644
--- a/lua/kickstart/plugins/autoformat.lua
+++ b/lua/kickstart/plugins/autoformat.lua
@@ -5,7 +5,6 @@
return {
'neovim/nvim-lspconfig',
-
config = function()
-- Switch for controlling whether you want autoformatting.
-- Use :KickstartFormatToggle to toggle autoformatting on or off
@@ -29,9 +28,11 @@ return {
return _augroups[client.id]
end
+ -- Whenever an LSP attaches to a buffer, we will run this function.
+ --
+ -- See `:help LspAttach` for more information about this autocmd event.
vim.api.nvim_create_autocmd('LspAttach', {
group = vim.api.nvim_create_augroup('kickstart-lsp-attach-format', { clear = true }),
-
-- This is where we attach the autoformatting for reasonable clients
callback = function(args)
local client_id = args.data.client_id
@@ -49,6 +50,8 @@ return {
return
end
+ -- Create an autocmd that will run *before* we save the buffer.
+ -- Run the formatting command for the LSP that has just attached.
vim.api.nvim_create_autocmd('BufWritePre', {
group = get_augroup(client),
buffer = bufnr,
@@ -57,7 +60,12 @@ return {
return
end
- vim.lsp.buf.format { async = false }
+ vim.lsp.buf.format {
+ async = false,
+ filter = function(c)
+ return c.id == client.id
+ end,
+ }
end,
})
end,
diff --git a/lua/kickstart/plugins/statusline.lua b/lua/kickstart/plugins/statusline.lua
deleted file mode 100644
index f54393f..0000000
--- a/lua/kickstart/plugins/statusline.lua
+++ /dev/null
@@ -1,14 +0,0 @@
-return {
- -- Set lualine as statusline
- 'nvim-lualine/lualine.nvim',
- -- See `:help lualine.txt`
- opts = {
- options = {
- icons_enabled = false,
- theme = 'tokyonight',
- component_separators = '|',
- section_separators = '',
- },
- },
-}
-
diff --git a/lua/kickstart/plugins/theme.lua b/lua/kickstart/plugins/theme.lua
deleted file mode 100644
index 794aa4d..0000000
--- a/lua/kickstart/plugins/theme.lua
+++ /dev/null
@@ -1,10 +0,0 @@
-return {
- "folke/tokyonight.nvim",
- lazy = false,
- priority = 1000,
- opts = {},
- config = function()
- vim.cmd.colorscheme 'tokyonight-storm'
- end,
-}
-