diff options
author | talha <talha@talhaamir.xyz> | 2023-12-14 11:49:47 +0500 |
---|---|---|
committer | talha <talha@talhaamir.xyz> | 2023-12-14 11:49:47 +0500 |
commit | db929434fa2f29e5674a5f24d71901b4fa458363 (patch) | |
tree | 850a02a7c945a1a25040ae289a62385e6d0f47f8 /after/plugin | |
parent | 27c1b5b9a5cadf1d1331e4cefeaa9c8a73707b26 (diff) |
Fix autoreload, added autocmd:
- Added autoreload to fix reloading when file changed externally
- Added autocmd to format python files on save
Diffstat (limited to 'after/plugin')
-rw-r--r-- | after/plugin/colors.lua | 16 | ||||
-rw-r--r-- | after/plugin/lsp.lua | 1 |
2 files changed, 2 insertions, 15 deletions
diff --git a/after/plugin/colors.lua b/after/plugin/colors.lua index 37afa2f..b32344f 100644 --- a/after/plugin/colors.lua +++ b/after/plugin/colors.lua @@ -23,18 +23,4 @@ require("gruvbox").setup({ transparent_mode = false, }) -vim.cmd("colorscheme gruvbox") - -function SetFocusColors(mode) - if mode == 'light' then - vim.opt.cursorline = false - vim.opt.colorcolumn = '0' - vim.cmd("colorscheme paper") - end - - if mode == 'dark' then - vim.opt.cursorline = true - vim.opt.colorcolumn = '120' - vim.cmd("colorscheme atlas") - end -end +vim.cmd("colorscheme nightfly") diff --git a/after/plugin/lsp.lua b/after/plugin/lsp.lua index f8dae3c..642328c 100644 --- a/after/plugin/lsp.lua +++ b/after/plugin/lsp.lua @@ -20,6 +20,7 @@ lsp.on_attach(function(client, bufnr) vim.keymap.set("n", "<leader>vrr", function() vim.lsp.buf.references() end, opts) vim.keymap.set("n", "<leader>vrn", function() vim.lsp.buf.rename() end, opts) vim.keymap.set("i", "<C-h>", function() vim.lsp.buf.signature_help() end, opts) + lsp.buffer_autoformat() end) lsp.setup() |